uBlock/src/css/dyna-rules.css

115 lines
2.4 KiB
CSS
Raw Normal View History

body {
bottom: 0;
display: flex;
left: 0;
position: absolute;
right: 0;
top: 0;
flex-direction: column;
}
2015-02-11 16:34:51 +00:00
#diff {
border: 0;
border-top: 1px solid #eee;
flex-grow: 1;
2015-02-11 16:34:51 +00:00
margin: 0;
padding: 0;
2015-02-11 16:34:51 +00:00
white-space: nowrap;
}
#diff .tools > * {
margin-bottom: 0.5em;
}
#diff .tools .fa {
font-size: large;
}
#diff .ruleActions {
2015-02-11 16:34:51 +00:00
border: 0;
2015-02-11 18:13:04 +00:00
box-sizing: border-box;
2015-02-11 16:34:51 +00:00
display: inline-block;
padding: 0;
text-align: center;
vertical-align: top;
width: 50%;
2015-02-11 16:34:51 +00:00
}
#diff .ruleActions h3 {
font-weight: normal;
margin: 0.5em 0;
}
#ruleFilter {
2015-02-11 16:34:51 +00:00
text-align: center;
}
2018-03-21 12:42:21 +00:00
#ruleFilter .fa {
color: #888;
}
2015-02-11 16:34:51 +00:00
body[dir="ltr"] #revertButton:after {
content: '\2009\f061';
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
vertical-align: baseline;
display: inline-block;
}
body[dir="rtl"] #revertButton:after {
content: '\2009\f060';
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
vertical-align: baseline;
display: inline-block;
}
body[dir="ltr"] #commitButton:before {
content: '\f060\2009';
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
vertical-align: baseline;
display: inline-block;
}
body[dir="rtl"] #commitButton:before {
content: '\f061\2009';
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
vertical-align: baseline;
display: inline-block;
}
#revertButton,
#commitButton,
#diff.editing #exportButton,
#diff.editing #importButton,
#editSaveButton {
2015-02-11 16:34:51 +00:00
opacity: 0.25;
pointer-events: none;
}
#diff.dirty:not(.editing) #revertButton,
#diff.dirty:not(.editing) #commitButton,
#diff.editing #editSaveButton {
2015-02-11 16:34:51 +00:00
opacity: 1;
pointer-events: auto;
}
.codeMirrorContainer {
height: 60vh;
2015-02-11 16:34:51 +00:00
}
.CodeMirror-merge, .CodeMirror-merge-pane, .CodeMirror-merge .CodeMirror {
box-sizing: border-box;
height: 100%;
2015-02-11 16:34:51 +00:00
}
#diff.editing .CodeMirror-merge-copy,
#diff.editing .CodeMirror-merge-copy-reverse {
display: none;
2015-02-11 16:34:51 +00:00
}
#diff.editing .CodeMirror-merge-left .CodeMirror {
2015-02-11 16:34:51 +00:00
color: #888;
}
#diff.editing .CodeMirror-merge-editor .CodeMirror {
background-color: #ffe;
2015-02-11 16:34:51 +00:00
}
2018-03-16 22:33:50 +00:00
body[dir="rtl"] .CodeMirror-merge-pane-rightmost {
right: unset;
left: 0;
2018-03-16 22:33:50 +00:00
}