mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Related feedback: - https://github.com/uBlockOrigin/uBlock-issues/issues/401#issuecomment-703075797 Name: `uiTheme` Default: `unset` Values: - `unset`: uBO will pick the theme according to browser's `prefers-color-scheme` - `light`: force light scheme - `dark`: force dark theme This advanced setting is not to be documented yet as it has not been decided this is a long term solution.
958 lines
25 KiB
CSS
958 lines
25 KiB
CSS
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
}
|
|
textarea {
|
|
box-sizing: border-box;
|
|
direction: ltr;
|
|
resize: none;
|
|
width: 100%;
|
|
}
|
|
.permatoolbar {
|
|
background-color: var(--default-surface);
|
|
border: 0;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
font-size: 120%;
|
|
justify-content: space-between;
|
|
margin: 0;
|
|
padding: 0.25em;
|
|
}
|
|
.permatoolbar > div {
|
|
display: flex;
|
|
}
|
|
.permatoolbar .button {
|
|
cursor: pointer;
|
|
font-size: 150%;
|
|
padding: 0.25em;
|
|
}
|
|
.permatoolbar .button.active {
|
|
fill: #5F9EA0;
|
|
}
|
|
.permatoolbar .button:hover {
|
|
background-color: var(--default-surface-hover);
|
|
}
|
|
#pageSelector {
|
|
min-width: 10em;
|
|
padding: 0.25em 0;
|
|
width: 50vw;
|
|
}
|
|
body[dir="ltr"] #pageSelector {
|
|
margin-right: 1em;
|
|
}
|
|
body[dir="rtl"] #pageSelector {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
#showpopup {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
#showpopup img {
|
|
filter: grayscale(100%);
|
|
height: auto;
|
|
width: 1em;
|
|
}
|
|
#info {
|
|
fill: #ccc;
|
|
}
|
|
#info:hover {
|
|
fill: #000;
|
|
}
|
|
|
|
/*
|
|
https://github.com/gorhill/uBlock/issues/3293
|
|
=> https://devhints.io/css-system-font-stack
|
|
*/
|
|
#inspectors {
|
|
flex-grow: 1;
|
|
font-family: "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
}
|
|
.inspector {
|
|
border-top: 1px solid #ccc;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.vscrollable {
|
|
direction: ltr;
|
|
flex-grow: 1;
|
|
font-size: small;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.inspector:not(.vExpanded) .vCompactToggler.button {
|
|
transform: scaleY(-1)
|
|
}
|
|
.hCompact .hCompactToggler.button {
|
|
transform: scaleX(-1)
|
|
}
|
|
|
|
#inspectors.dom #netInspector {
|
|
display: none;
|
|
}
|
|
|
|
#netInspector #pause > span:last-of-type {
|
|
display: none;
|
|
}
|
|
#netInspector.paused #pause > span:first-of-type {
|
|
display: none;
|
|
}
|
|
#netInspector.paused #pause > span:last-of-type {
|
|
display: inline-flex;
|
|
fill: #5F9EA0;
|
|
}
|
|
#netInspector #filterExprGroup {
|
|
display: flex;
|
|
margin: 0 1em;
|
|
position: relative;
|
|
}
|
|
#netInspector #filterButton {
|
|
opacity: 0.25;
|
|
}
|
|
#netInspector.f #filterButton {
|
|
opacity: 1;
|
|
}
|
|
#netInspector #filterInput {
|
|
border: 1px solid gray;
|
|
display: inline-flex;
|
|
}
|
|
#netInspector #filterInput > input {
|
|
border: 0;
|
|
min-width: 16em;
|
|
}
|
|
#netInspector #filterExprButton {
|
|
transform: scaleY(-1);
|
|
}
|
|
#netInspector #filterExprButton:hover {
|
|
background-color: transparent;
|
|
}
|
|
#netInspector #filterExprButton.expanded {
|
|
transform: scaleY(1);
|
|
}
|
|
#netInspector #filterExprPicker {
|
|
background-color: var(--default-surface);
|
|
border: 1px solid gray;
|
|
display: none;
|
|
position: absolute;
|
|
flex-direction: column;
|
|
font-size: small;
|
|
top: 100%;
|
|
z-index: 100;
|
|
}
|
|
body[dir="ltr"] #netInspector #filterExprPicker {
|
|
right: 0;
|
|
}
|
|
body[dir="rtl"] #netInspector #filterExprPicker {
|
|
left: 0;
|
|
}
|
|
|
|
#netInspector #filterExprGroup:hover #filterExprButton.expanded ~ #filterExprPicker {
|
|
display: flex;
|
|
}
|
|
#netInspector #filterExprPicker > div {
|
|
border: 1px dotted #ddd;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
display: flex;
|
|
padding: 0.5em;
|
|
}
|
|
#netInspector #filterExprPicker > div:first-of-type {
|
|
border-top: 0;
|
|
}
|
|
#netInspector #filterExprPicker > div:last-of-type {
|
|
border-bottom: 0;
|
|
}
|
|
#netInspector #filterExprPicker div {
|
|
display: flex;
|
|
}
|
|
#netInspector #filterExprPicker span[data-filtex] {
|
|
align-items: center;
|
|
border: 1px solid transparent;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
margin: 0 0.5em 0 0;
|
|
padding: 0.5em;
|
|
white-space: nowrap;
|
|
}
|
|
#netInspector #filterExprPicker span[data-filtex]:last-of-type {
|
|
margin: 0;
|
|
}
|
|
#netInspector #filterExprPicker span[data-filtex]:hover {
|
|
background-color: aliceblue;
|
|
border: 1px solid lightblue;
|
|
}
|
|
#netInspector #filterExprPicker span.on[data-filtex] {
|
|
background-color: lightblue;
|
|
border: 1px solid lightblue;
|
|
}
|
|
|
|
#netInspector .vscrollable {
|
|
overflow: hidden;
|
|
}
|
|
#vwRenderer {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
#vwRenderer #vwScroller {
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
#vwRenderer #vwScroller #vwVirtualContent {
|
|
overflow: hidden;
|
|
}
|
|
#vwRenderer #vwContent {
|
|
left: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
#vwRenderer .logEntry {
|
|
display: block;
|
|
left: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
#vwRenderer .logEntry:empty {
|
|
display: none;
|
|
}
|
|
#vwRenderer .logEntry > div {
|
|
height: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="1"],
|
|
#netFilteringDialog > .panes > .details > div[data-status="1"] {
|
|
background-color: rgba(192, 0, 0, 0.1);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="1"],
|
|
body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="1"] {
|
|
background-color: rgba(0, 19, 110, 0.1);
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="3"] {
|
|
background-color: rgba(108, 108, 108, 0.1);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="3"] {
|
|
background-color: rgba(96, 96, 96, 0.1);
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="2"],
|
|
#netFilteringDialog > .panes > .details > div[data-status="2"] {
|
|
background-color: rgba(0, 160, 0, 0.1);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="2"],
|
|
body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="2"] {
|
|
background-color: rgba(255, 194, 57, 0.1)
|
|
}
|
|
#vwRenderer .logEntry > div[data-tabid="-1"] {
|
|
text-shadow: 0 0.2em 0.4em #aaa;
|
|
}
|
|
#vwRenderer .logEntry > div.cosmeticRealm,
|
|
#vwRenderer .logEntry > div.redirect {
|
|
background-color: rgba(255, 255, 0, 0.1);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div.cosmeticRealm,
|
|
body.colorBlind #vwRenderer .logEntry > div.redirect {
|
|
background-color: rgba(0, 19, 110, 0.1);
|
|
}
|
|
#vwRenderer .logEntry > div[data-aliasid] {
|
|
color: mediumblue;
|
|
}
|
|
#vwRenderer .logEntry > div[data-type="tabLoad"] {
|
|
background-color: #666;
|
|
color: white;
|
|
}
|
|
#vwRenderer .logEntry > div[data-type="error"] {
|
|
color: #800;
|
|
}
|
|
#vwRenderer .logEntry > div[data-type="info"] {
|
|
color: #008;
|
|
}
|
|
#vwRenderer .logEntry > div.voided {
|
|
opacity: 0.3;
|
|
}
|
|
#vwRenderer .logEntry > div.voided:hover {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
#vwRenderer .logEntry > div > span {
|
|
border: 1px solid #ccc;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
padding: 0.2em;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
word-break: break-all;
|
|
}
|
|
#vwRenderer .logEntry > div.canDetails:hover > span {
|
|
background-color: rgba(0,0,0,0.04);
|
|
}
|
|
body[dir="ltr"] #vwRenderer .logEntry > div > span:first-child {
|
|
border-left: 0;
|
|
}
|
|
body[dir="rtl"] #vwRenderer .logEntry > div > span:first-child {
|
|
border-right: 0;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(1) {
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(2) {
|
|
}
|
|
#vwRenderer #vwContent .logEntry > div > span:nth-of-type(2) {
|
|
text-overflow: ellipsis;
|
|
}
|
|
.vExpanded #vwRenderer #vwContent .logEntry > div > span:nth-of-type(2) {
|
|
overflow-y: auto;
|
|
white-space: pre-line;
|
|
}
|
|
#vwRenderer .logEntry > div.messageRealm[data-type="tabLoad"] > span:nth-of-type(2) {
|
|
text-align: center;
|
|
}
|
|
#vwRenderer .logEntry > div.cosmeticRealm > span:nth-of-type(2) > span:first-of-type {
|
|
display: none;
|
|
}
|
|
#vwRenderer .logEntry > div.cosmeticRealm > span:nth-of-type(2) > span:last-of-type {
|
|
pointer-events: none;
|
|
}
|
|
#vwRenderer .logEntry > div.cosmeticRealm.isException > span:nth-of-type(2) > span:last-of-type {
|
|
text-decoration: line-through rgba(0,0,255,0.7);
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(3) {
|
|
font: 12px monospace;
|
|
padding-left: 0.3em;
|
|
padding-right: 0.3em;
|
|
text-align: center;
|
|
}
|
|
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(2),
|
|
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(3),
|
|
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(5) {
|
|
background: rgba(0, 0, 255, 0.1);
|
|
cursor: zoom-in;
|
|
}
|
|
#netInspector:not(.vExpanded) #vwRenderer .logEntry > div > span:nth-of-type(4) {
|
|
direction: rtl;
|
|
text-align: right;
|
|
unicode-bidi: plaintext;
|
|
}
|
|
#vwRenderer #vwContent .logEntry > div > span:nth-of-type(4) {
|
|
text-overflow: ellipsis;
|
|
}
|
|
.vExpanded #vwRenderer #vwContent .logEntry > div > span:nth-of-type(4) {
|
|
overflow-y: auto;
|
|
text-overflow: clip;
|
|
white-space: pre-line;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(5) {
|
|
text-align: center;
|
|
}
|
|
/* visual for tabless network requests */
|
|
#vwRenderer .logEntry > div > span:nth-of-type(5) {
|
|
position: relative;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(6) {
|
|
}
|
|
#vwRenderer #vwContent .logEntry > div > span:nth-of-type(6) {
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(7) {
|
|
position: relative;
|
|
}
|
|
#vwRenderer #vwContent .logEntry > div > span:nth-of-type(7) {
|
|
text-overflow: ellipsis;
|
|
}
|
|
.vExpanded #vwRenderer #vwContent .logEntry > div > span:nth-of-type(7) {
|
|
overflow-y: auto;
|
|
white-space: pre-line;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(7) b {
|
|
font-weight: bold;
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="1"] > span:nth-of-type(7) b,
|
|
#netFilteringDialog > .panes > .details > div[data-status="1"] b {
|
|
background-color: rgba(192, 0, 0, 0.2);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="1"] > span:nth-of-type(7) b,
|
|
body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="1"] b {
|
|
background-color: rgba(0, 19, 110, 0.2);
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="3"] > span:nth-of-type(7) b {
|
|
background-color: rgba(108, 108, 108, 0.2);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="3"] > span:nth-of-type(7) b {
|
|
background-color: rgba(96, 96, 96, 0.2);
|
|
}
|
|
#vwRenderer .logEntry > div[data-status="2"] > span:nth-of-type(7) b,
|
|
#netFilteringDialog > .panes > .details > div[data-status="2"] b {
|
|
background-color: rgba(0, 160, 0, 0.2);
|
|
}
|
|
body.colorBlind #vwRenderer .logEntry > div[data-status="2"] > span:nth-of-type(7) b,
|
|
body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="2"] b {
|
|
background-color: rgba(255, 194, 57, 0.2);
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(7) a {
|
|
background-color: dimgray;
|
|
color: white;
|
|
display: none;
|
|
height: 100%;
|
|
padding: 0 0.25em;
|
|
opacity: 0.4;
|
|
position: absolute;
|
|
right: 0;
|
|
text-decoration: none;
|
|
top: 0;
|
|
}
|
|
#netInspector.vExpanded #vwRenderer .logEntry > div > span:nth-of-type(7) a {
|
|
bottom: 0px;
|
|
height: unset;
|
|
padding: 0.25em;
|
|
top: unset;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(7) a::after {
|
|
content: '\2197';
|
|
}
|
|
#vwRenderer .logEntry > div.networkRealm > span:nth-of-type(7):hover a {
|
|
align-items: center;
|
|
display: inline-flex;
|
|
}
|
|
#vwRenderer .logEntry > div > span:nth-of-type(7) a:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
#vwRenderer #vwBottom {
|
|
background-color: #00F;
|
|
height: 0;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
#vwRenderer #vwLineSizer {
|
|
left: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
visibility: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
#popupContainer {
|
|
background-color: var(--default-surface);
|
|
border: 1px solid gray;
|
|
bottom: 0;
|
|
display: none;
|
|
max-height: 70vh;
|
|
min-width: 360px;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
right: 0;
|
|
z-index: 200;
|
|
}
|
|
#inspectors.popupOn #popupContainer {
|
|
display: block;
|
|
}
|
|
|
|
#modalOverlay {
|
|
align-items: center;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border: 0;
|
|
bottom: 0;
|
|
display: none;
|
|
justify-content: center;
|
|
left: 0;
|
|
margin: 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 400;
|
|
}
|
|
#modalOverlay.on {
|
|
display: flex;
|
|
}
|
|
#modalOverlay > div {
|
|
position: relative;
|
|
}
|
|
#modalOverlay > div > div:nth-of-type(1) {
|
|
background-color: var(--default-surface);
|
|
border: 0;
|
|
box-sizing: border-box;
|
|
padding: 1em;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
width: 90vw;
|
|
}
|
|
#modalOverlay > div > div:nth-of-type(2) {
|
|
stroke: var(--default-ink);
|
|
stroke-width: 3px;
|
|
position: absolute;
|
|
width: 1.6em;
|
|
height: 1.6em;
|
|
bottom: calc(100% + 2px);
|
|
background-color: var(--default-surface);
|
|
}
|
|
body[dir="ltr"] #modalOverlay > div > div:nth-of-type(2) {
|
|
right: 0;
|
|
}
|
|
body[dir="rtl"] #modalOverlay > div > div:nth-of-type(2) {
|
|
left: 0;
|
|
}
|
|
#modalOverlay > div > div:nth-of-type(2):hover {
|
|
background-color: var(--default-surface-hover);
|
|
}
|
|
#modalOverlay > div > div:nth-of-type(2) > * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#netFilteringDialog {
|
|
font-size: 95%;
|
|
}
|
|
#netFilteringDialog a {
|
|
text-decoration: none;
|
|
}
|
|
#netFilteringDialog select {
|
|
max-width: 75%;
|
|
outline: none;
|
|
}
|
|
#netFilteringDialog > .preview {
|
|
align-items: center;
|
|
/* http://lea.verou.me/css3patterns/ */
|
|
background-color: #aaa;
|
|
background-image:
|
|
linear-gradient(
|
|
45deg,
|
|
#666 25%,
|
|
transparent 25%,
|
|
transparent 75%,
|
|
#666 75%,
|
|
#666
|
|
),
|
|
linear-gradient(
|
|
45deg,
|
|
#666 25%,
|
|
transparent 25%,
|
|
transparent 75%,
|
|
#666 75%,
|
|
#666
|
|
);
|
|
background-position:0 0, 9px 9px;
|
|
background-size: 18px 18px;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 1em;
|
|
padding: 0.5em;
|
|
text-align: center;
|
|
}
|
|
#netFilteringDialog > .preview > * {
|
|
max-width: 100%;
|
|
max-height: 20vh;
|
|
}
|
|
#netFilteringDialog > .preview > span {
|
|
background-color: white;
|
|
cursor: pointer;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
#netFilteringDialog > .headers {
|
|
border-bottom: 1px solid #888;
|
|
line-height: 2;
|
|
position: relative;
|
|
}
|
|
#netFilteringDialog > .headers > .header {
|
|
background-color: #eee;
|
|
border: 1px solid #aaa;
|
|
border-bottom: 1px solid #888;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
color: #888;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
padding: 0 1em;
|
|
position: relative;
|
|
text-align: center;
|
|
top: 1px;
|
|
}
|
|
#netFilteringDialog[data-pane="details"] > .headers > [data-pane="details"],
|
|
#netFilteringDialog[data-pane="dynamic"] > .headers > [data-pane="dynamic"],
|
|
#netFilteringDialog[data-pane="static"] > .headers > [data-pane="static"] {
|
|
background-color: white;
|
|
border-color: #888;
|
|
border-bottom: 1px solid white;
|
|
color: black;
|
|
}
|
|
#netFilteringDialog > .headers > .tools {
|
|
bottom: 0;
|
|
display: flex;
|
|
position: absolute;
|
|
}
|
|
body[dir="ltr"] #netFilteringDialog > .headers > .tools {
|
|
right: 0;
|
|
}
|
|
body[dir="rtl"] #netFilteringDialog > .headers > .tools {
|
|
left: 0;
|
|
}
|
|
#netFilteringDialog > .headers > .tools > span {
|
|
cursor: pointer;
|
|
font-size: 1.5em;
|
|
padding: 0 0.25em;
|
|
text-align: center;
|
|
}
|
|
#netFilteringDialog > .headers > .tools > span:hover {
|
|
background-color: #eee;
|
|
}
|
|
#netFilteringDialog.cosmeticRealm > .headers > .dynamic,
|
|
#netFilteringDialog.cosmeticRealm > .panes > .dynamic {
|
|
display: none;
|
|
}
|
|
#netFilteringDialog.cosmeticRealm > .headers > .static,
|
|
#netFilteringDialog.cosmeticRealm > .panes > .static {
|
|
display: none;
|
|
}
|
|
#netFilteringDialog > div.panes {
|
|
min-height: 40vh;
|
|
overflow: hidden;
|
|
overflow-y: auto;
|
|
padding-top: 1em;
|
|
}
|
|
#netFilteringDialog > div.panes > div {
|
|
display: none;
|
|
}
|
|
#netFilteringDialog[data-pane="details"] > .panes > [data-pane="details"],
|
|
#netFilteringDialog[data-pane="dynamic"] > .panes > [data-pane="dynamic"],
|
|
#netFilteringDialog[data-pane="static"] > .panes > [data-pane="static"] {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div {
|
|
align-items: stretch;
|
|
background-color: #e6e6e6;
|
|
border: 0;
|
|
border-bottom: 1px solid white;
|
|
display: flex;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span {
|
|
padding: 0.5em;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span:nth-of-type(1) {
|
|
border: 0;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
text-align: right;
|
|
width: 8em;
|
|
}
|
|
body[dir="ltr"] #netFilteringDialog > .panes > .details > div > span:nth-of-type(1) {
|
|
border-right: 1px solid white;
|
|
}
|
|
body[dir="rtl"] #netFilteringDialog > .panes > .details > div > span:nth-of-type(1) {
|
|
border-left: 1px solid white;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span:nth-of-type(2) {
|
|
flex-grow: 1;
|
|
max-height: 20vh;
|
|
overflow: hidden auto;
|
|
white-space: pre-line
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span:nth-of-type(2):not(.prose) {
|
|
word-break: break-all;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span:nth-of-type(2) .fa-icon {
|
|
font-size: 110%;
|
|
opacity: 0.5;
|
|
vertical-align: bottom;
|
|
}
|
|
#netFilteringDialog > .panes > .details > div > span:nth-of-type(2) .fa-icon:hover {
|
|
opacity: 1;
|
|
}
|
|
#netFilteringDialog > .panes > .details .exceptor {
|
|
align-items: center;
|
|
border-left: 1px solid white;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
font-family: monospace;
|
|
opacity: 0.8;
|
|
}
|
|
#netFilteringDialog > .panes > .details .exceptor:hover {
|
|
opacity: 1;
|
|
}
|
|
#netFilteringDialog > .panes > .details .exceptored .filter {
|
|
text-decoration: line-through;
|
|
}
|
|
#netFilteringDialog > .panes > .details .exceptored .exceptor {
|
|
background-color: lightblue;
|
|
}
|
|
#netFilteringDialog > .panes > .details .exceptor::before {
|
|
content: '#@#';
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic > .toolbar {
|
|
padding-bottom: 1em;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .row {
|
|
display: flex;
|
|
min-height: 2.2em;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .row > span:nth-of-type(1) {
|
|
align-self: stretch;
|
|
border: 0;
|
|
display: inline-flex;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
text-align: center;
|
|
width: 4.5em;
|
|
}
|
|
body[dir="ltr"] #netFilteringDialog > div.panes > .dynamic .row > span:nth-of-type(1) {
|
|
border-right: 1px solid white;
|
|
}
|
|
body[dir="rtl"] #netFilteringDialog > div.panes > .dynamic .row > span:nth-of-type(1) {
|
|
border-left: 1px solid white;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .row > span:nth-of-type(2) {
|
|
align-self: center;
|
|
padding: 0 0.5em;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic > .toolbar #saveRules {
|
|
background-color: #ffe;
|
|
border: 1px solid #ddc;
|
|
border-radius: 4px;
|
|
fill: #888;
|
|
cursor: pointer;
|
|
font-size: 2em;
|
|
visibility: hidden;
|
|
width: 100%;
|
|
}
|
|
body.dirty #netFilteringDialog > div.panes > .dynamic > .toolbar #saveRules {
|
|
visibility: visible;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic > .toolbar #saveRules:hover {
|
|
fill: black;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic > .toolbar .entry {
|
|
display: none;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry {
|
|
background-color: #e6e6e6;
|
|
border: 0;
|
|
border-bottom: 1px solid white;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry:hover {
|
|
background-color: #f0f0f0;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action {
|
|
background-color: transparent;
|
|
border: 0;
|
|
cursor: pointer;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action > span {
|
|
background-color: transparent;
|
|
border: 0;
|
|
display: inline-block;
|
|
height: 100%;
|
|
opacity: 0.2;
|
|
visibility: hidden;
|
|
width: 33.33%;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.allow {
|
|
background-color: rgba(0, 160, 0, 0.3);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.allow {
|
|
background-color: rgba(255, 194, 57, 0.4);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.noop {
|
|
background-color: rgba(108, 108, 108, 0.3);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.noop {
|
|
background-color: rgba(96, 96, 96, 0.4);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.block {
|
|
background-color: rgba(192, 0, 0, 0.3);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.block {
|
|
background-color: rgba(0, 19, 110, 0.4);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.own.allow {
|
|
background-color: rgba(0, 160, 0, 1);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.own.allow {
|
|
background-color: rgba(255, 194, 57, 1);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.own.noop,
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.own.noop {
|
|
background-color: rgba(108, 108, 108, 1);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action.own.block {
|
|
background-color: rgba(192, 0, 0, 1);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action.own.block {
|
|
background-color: rgba(0, 19, 110, 1);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action:not(.own):hover > span {
|
|
opacity: 0.2;
|
|
visibility: visible;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action:not(.own):hover > span:hover {
|
|
opacity: 0.75;
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action > .allow {
|
|
background-color: rgb(0, 160, 0);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action > .allow {
|
|
background-color: rgb(255, 194, 57);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action > .noop {
|
|
background-color: rgb(108, 108, 108);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .action > .block {
|
|
background-color: rgb(192, 0, 0);
|
|
}
|
|
body.colorBlind #netFilteringDialog > div.panes > .dynamic .entry > .action > .block {
|
|
background-color: rgb(0, 19, 110);
|
|
}
|
|
#netFilteringDialog > div.panes > .dynamic .entry > .url {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#netFilteringDialog > div.panes > div.static > div {
|
|
line-height: 2;
|
|
}
|
|
#netFilteringDialog > div.panes > div.static > div {
|
|
padding-bottom: 1em;
|
|
}
|
|
#netFilteringDialog > div.panes > div.static textarea {
|
|
height: 6em;
|
|
max-height: 20vh;
|
|
min-height: 10vh;
|
|
word-break: break-all;
|
|
}
|
|
#netFilteringDialog > div.panes > div.static > div:nth-of-type(2) {
|
|
text-align: center;
|
|
}
|
|
|
|
#filterFinderDialog {
|
|
word-break: break-all;
|
|
}
|
|
#filterFinderDialog code {
|
|
background: #eee;
|
|
font-size: 85%;
|
|
padding: 3px;
|
|
unicode-bidi: plaintext;
|
|
white-space: pre-wrap;
|
|
}
|
|
#filterFinderDialog ul {
|
|
font-size: larger;
|
|
}
|
|
#filterFinderDialog .filterFinderListEntry {
|
|
align-items: flex-end;
|
|
display: flex;
|
|
}
|
|
#filterFinderDialog .filterFinderListEntry a {
|
|
text-decoration: none;
|
|
}
|
|
#filterFinderDialog .filterFinderListEntry a.fa-icon {
|
|
margin: 0 0.5em;
|
|
opacity: 0.6;
|
|
}
|
|
#filterFinderDialog .filterFinderListEntry a.fa-icon:hover {
|
|
opacity: 1;
|
|
}
|
|
#filterFinderDialog .filterFinderListEntry a.fa-icon[href=""] {
|
|
display: none;
|
|
}
|
|
#filterFinderDialog > *:first-child {
|
|
margin-top: 0;
|
|
}
|
|
#filterFinderDialog > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#loggerStatsDialog .sortedEntries {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: smaller;
|
|
}
|
|
#loggerStatsDialog .sortedEntries > div {
|
|
display: flex;
|
|
}
|
|
#loggerStatsDialog .sortedEntries > div > span:first-of-type {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
padding: 0 2em 0 0;
|
|
text-align: right;
|
|
width: 3em;
|
|
}
|
|
#loggerStatsDialog .sortedEntries > div > span:last-of-type {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
white-space: pre;
|
|
}
|
|
|
|
#loggerExportDialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#loggerExportDialog .options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 1em;
|
|
}
|
|
#loggerExportDialog .options > div {
|
|
display: inline-flex;
|
|
}
|
|
#loggerExportDialog .options span[data-i18n] {
|
|
border: 1px solid lightblue;
|
|
cursor: pointer;
|
|
font-size: 90%;
|
|
margin: 0;
|
|
padding: 0.5em;
|
|
white-space: nowrap;
|
|
}
|
|
#loggerExportDialog .options span[data-i18n]:hover {
|
|
background-color: aliceblue;
|
|
}
|
|
#loggerExportDialog .options span.on[data-i18n],
|
|
#loggerExportDialog .options span.pushbutton:active {
|
|
background-color: lightblue;
|
|
}
|
|
#loggerExportDialog .output {
|
|
font: smaller mono;
|
|
height: 60vh;
|
|
padding: 0.5em;
|
|
white-space: pre;
|
|
}
|
|
|
|
#loggerSettingsDialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#loggerSettingsDialog > div {
|
|
padding-bottom: 1em;
|
|
}
|
|
#loggerSettingsDialog > div:last-of-type {
|
|
padding-bottom: 0;
|
|
}
|
|
#loggerSettingsDialog ul {
|
|
padding: 0;
|
|
}
|
|
body[dir="ltr"] #loggerSettingsDialog ul {
|
|
padding-left: 2em;
|
|
}
|
|
body[dir="rtl"] #loggerSettingsDialog ul {
|
|
padding-right: 2em;
|
|
}
|
|
#loggerSettingsDialog li {
|
|
list-style-type: none;
|
|
margin: 0.5em 0 0 0;
|
|
}
|
|
#loggerSettingsDialog input {
|
|
max-width: 6em;
|
|
}
|
|
|
|
.hide {
|
|
display: none !important;
|
|
}
|