2015-05-09 00:28:01 +02:00
|
|
|
body {
|
|
|
|
background-color: white;
|
|
|
|
border: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: black;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
overflow-x: hidden;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#toolbar {
|
|
|
|
background-color: white;
|
|
|
|
border: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
left: 0;
|
|
|
|
margin: 0;
|
2015-05-16 16:15:02 +02:00
|
|
|
padding: 0.5em 1em;
|
2015-05-09 00:28:01 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
#toolbar .button {
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2015-05-16 16:15:02 +02:00
|
|
|
font-size: 150%;
|
2015-05-09 00:28:01 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
#toolbar .button.disabled {
|
|
|
|
opacity: 0.2;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
#toolbar .button:hover {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
2015-05-16 16:15:02 +02:00
|
|
|
#toolbar > div {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
#toolbar > div:first-of-type {
|
|
|
|
font-size: 120%;
|
|
|
|
}
|
|
|
|
#toolbar > div > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
#pageSelector {
|
|
|
|
width: 28em;
|
|
|
|
padding: 0.2em 0;
|
|
|
|
}
|
2015-05-09 00:28:01 +02:00
|
|
|
body #compactViewToggler.button:before {
|
|
|
|
content: '\f102';
|
|
|
|
}
|
|
|
|
body.compactView #compactViewToggler.button:before {
|
|
|
|
content: '\f103';
|
|
|
|
}
|
|
|
|
#filterButton {
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
|
|
|
body.f #filterButton {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
#filterInput.bad {
|
|
|
|
background-color: #fee;
|
|
|
|
}
|
|
|
|
#maxEntries {
|
2015-05-16 16:15:02 +02:00
|
|
|
margin: 0 2em;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
input:focus {
|
|
|
|
background-color: #ffe;
|
|
|
|
}
|
|
|
|
#content {
|
|
|
|
font: 13px sans-serif;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content table {
|
|
|
|
border: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
direction: ltr;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(1) {
|
|
|
|
width: 5em;
|
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(2) {
|
|
|
|
width: 2.5em;
|
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(3) {
|
2015-05-25 00:50:09 +02:00
|
|
|
width: 20%;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(4) {
|
2015-05-25 00:50:09 +02:00
|
|
|
width: 2.5em;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(5) {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
#content table > colgroup > col:nth-of-type(6) {
|
|
|
|
width: calc(100% - 16em - 20%);
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
body.f #content table tr.f {
|
2015-05-09 00:28:01 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.cat_info {
|
2015-05-09 00:28:01 +02:00
|
|
|
color: #00f;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.blocked {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(192, 0, 0, 0.1);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body.colorBlind #content tr.blocked {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(0, 19, 110, 0.1);
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
#content tr.nooped {
|
|
|
|
background-color: rgba(108, 108, 108, 0.1);
|
|
|
|
}
|
|
|
|
body.colorBlind #content tr.nooped {
|
|
|
|
background-color: rgba(96, 96, 96, 0.1);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.allowed {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(0, 160, 0, 0.1);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body.colorBlind #content tr.allowed {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(255, 194, 57, 0.1)
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.cb {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(255, 255, 0, 0.1);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.maindoc {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: #666;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
body #content td {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-top: none;
|
|
|
|
min-width: 0.5em;
|
|
|
|
padding: 3px;
|
|
|
|
vertical-align: top;
|
|
|
|
white-space: normal;
|
|
|
|
word-break: break-all;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td {
|
2015-05-09 00:28:01 +02:00
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td:first-of-type {
|
2015-05-09 00:28:01 +02:00
|
|
|
border-left: none;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td:last-of-type {
|
2015-05-09 00:28:01 +02:00
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
body.compactView #content td {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td:nth-of-type(1) {
|
2015-05-10 15:28:50 +02:00
|
|
|
text-align: right;
|
2015-05-09 00:28:01 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td:nth-of-type(2) {
|
2015-05-09 00:28:01 +02:00
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.tab_bts > td:nth-of-type(2):before {
|
2015-05-09 00:28:01 +02:00
|
|
|
content: '\f070';
|
|
|
|
font: 1em FontAwesome;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.tab:not(.canMtx) {
|
2015-05-10 18:25:26 +02:00
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.tab:not(.canMtx):hover {
|
2015-05-10 18:25:26 +02:00
|
|
|
opacity: 0.7;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.tab:not(.canMtx) > td:nth-of-type(2):before {
|
2015-05-09 00:28:01 +02:00
|
|
|
content: '\f00d';
|
|
|
|
font: 1em FontAwesome;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body:not(.popupOn) #content tr.canMtx td:nth-of-type(2) {
|
2015-05-09 00:28:01 +02:00
|
|
|
cursor: zoom-in;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body:not(.popupOn) #content tr.canMtx td:nth-of-type(2):hover {
|
2015-05-10 15:28:50 +02:00
|
|
|
background: #ccc;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#content tr.cat_net[data-filter] td:nth-of-type(3) {
|
|
|
|
cursor: zoom-in;
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
#content tr.cat_net td:nth-of-type(4),
|
|
|
|
#content tr.cat_cosmetic td:nth-of-type(4) {
|
2015-05-09 00:28:01 +02:00
|
|
|
font: 12px monospace;
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
#content tr.cat_net td:nth-of-type(4) {
|
2015-05-21 20:15:17 +02:00
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
#content tr.cat_net td:nth-of-type(4):hover {
|
2015-05-21 20:15:17 +02:00
|
|
|
background: #ccc;
|
|
|
|
}
|
|
|
|
#content tr.cat_net td:nth-of-type(6) > span > b {
|
2015-05-09 00:28:01 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr td:nth-of-type(6) b {
|
2015-05-09 00:28:01 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.blocked td:nth-of-type(6) b {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(192, 0, 0, 0.2);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body.colorBlind #content tr.blocked td:nth-of-type(6) b {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(0, 19, 110, 0.2);
|
|
|
|
}
|
2015-05-25 00:50:09 +02:00
|
|
|
#content tr.nooped td:nth-of-type(6) b {
|
|
|
|
background-color: rgba(108, 108, 108, 0.2);
|
|
|
|
}
|
|
|
|
body.colorBlind #content tr.nooped td:nth-of-type(6) b {
|
|
|
|
background-color: rgba(96, 96, 96, 0.2);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
#content tr.allowed td:nth-of-type(6) b {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(0, 160, 0, 0.2);
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
body.colorBlind #content tr.allowed td:nth-of-type(6) b {
|
2015-05-09 00:28:01 +02:00
|
|
|
background-color: rgba(255, 194, 57, 0.2);
|
|
|
|
}
|
2015-05-26 15:52:09 +02:00
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
#popupContainer {
|
|
|
|
background: white;
|
|
|
|
border: 1px solid gray;
|
|
|
|
border-radius: 3px;
|
2015-05-10 15:28:50 +02:00
|
|
|
box-sizing: border-box;
|
2015-05-09 00:28:01 +02:00
|
|
|
display: none;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
2015-05-10 15:28:50 +02:00
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2015-05-09 00:28:01 +02:00
|
|
|
z-index: 200;
|
|
|
|
}
|
|
|
|
body.popupOn #popupContainer {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#popupContainer > div {
|
|
|
|
background: #aaa;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
body[dir="ltr"] #popupContainer > div {
|
2015-05-10 15:28:50 +02:00
|
|
|
text-align: right;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
body[dir="rtl"] #popupContainer > div {
|
2015-05-10 15:28:50 +02:00
|
|
|
text-align: left;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
#popupContainer > div > span {
|
|
|
|
color: #eee;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font: 14px FontAwesome;
|
|
|
|
padding: 0 3px;
|
|
|
|
}
|
|
|
|
#popupContainer > div > span:hover {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
#popupContainer > iframe {
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-05-10 15:28:50 +02:00
|
|
|
#popupContainer.hide {
|
|
|
|
width: 6em !important;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
2015-05-10 15:28:50 +02:00
|
|
|
#popupContainer.hide > iframe {
|
|
|
|
display: none;
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
.modalDialog {
|
2015-06-12 14:26:54 +02:00
|
|
|
align-items: center;
|
|
|
|
-webkit-align-items: center;
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
border: 0;
|
|
|
|
bottom: 0;
|
2015-06-12 14:26:54 +02:00
|
|
|
display: flex;
|
|
|
|
display: -webkit-flex;
|
|
|
|
justify-content: center;
|
|
|
|
-webkit-justify-content: center;
|
2015-05-21 20:15:17 +02:00
|
|
|
left: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2015-05-25 00:50:09 +02:00
|
|
|
z-index: 400;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
2015-06-07 00:31:38 +02:00
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
.modalDialog .dialog {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: white;
|
2015-05-25 00:50:09 +02:00
|
|
|
border: 2px solid white;
|
2015-06-11 18:12:23 +02:00
|
|
|
box-sizing: border-box;
|
2015-05-25 00:50:09 +02:00
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog p {
|
2015-06-07 00:31:38 +02:00
|
|
|
line-height: 2em;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
2015-06-07 00:31:38 +02:00
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog select {
|
2015-06-07 00:31:38 +02:00
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
max-width: 75%;
|
|
|
|
outline: none;
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.preview {
|
2015-05-25 00:50:09 +02:00
|
|
|
/* 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;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.preview > * {
|
2015-05-25 00:50:09 +02:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 40vh;
|
|
|
|
}
|
2015-06-07 00:31:38 +02:00
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog table {
|
2015-06-07 00:31:38 +02:00
|
|
|
border: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog table > colgroup > col:nth-of-type(1) {
|
2015-06-07 00:31:38 +02:00
|
|
|
width: 3.8em;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog table > colgroup > col:nth-of-type(2) {
|
2015-06-07 00:31:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog td {
|
2015-06-07 00:31:38 +02:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
vertical-align: middle;
|
2015-05-25 00:50:09 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.headers {
|
2015-06-07 00:31:38 +02:00
|
|
|
border-bottom: 1px solid #888;
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.headers > span.header {
|
2015-06-07 00:31:38 +02:00
|
|
|
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;
|
|
|
|
font-size: small;
|
|
|
|
line-height: 2em;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
padding: 0 1em;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
top: 1px;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.headers > span.header.selected {
|
2015-06-07 00:31:38 +02:00
|
|
|
background-color: white;
|
|
|
|
border-color: #888;
|
|
|
|
border-bottom: 1px solid white;
|
|
|
|
color: black;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.headers > span.tools {
|
2015-06-07 00:31:38 +02:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body[dir="ltr"] #netFilteringDialog .dialog > div.headers > span.tools {
|
2015-06-09 15:05:32 +02:00
|
|
|
right: 0.1em;
|
2015-06-08 23:50:24 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body[dir="rtl"] #netFilteringDialog .dialog > div.headers > span.tools {
|
2015-06-09 15:05:32 +02:00
|
|
|
left: 0.1em;
|
2015-06-08 23:50:24 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.headers > span.tools > span {
|
2015-05-25 00:50:09 +02:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.2em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers {
|
2015-06-07 00:31:38 +02:00
|
|
|
height: 40vh;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div {
|
2015-06-07 00:31:38 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.selected {
|
2015-06-07 00:31:38 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar select {
|
2015-06-07 00:31:38 +02:00
|
|
|
font: 14px;
|
|
|
|
height: 2em;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: #ffe;
|
|
|
|
border: 1px solid #ddc;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #888;
|
|
|
|
font-size: 1.8em;
|
2015-05-25 00:50:09 +02:00
|
|
|
margin: 0.1em;
|
|
|
|
padding: 0.25em 0.5em;
|
2015-05-21 20:15:17 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.dirty #netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules {
|
2015-05-21 20:15:17 +02:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules:hover {
|
2015-05-21 20:15:17 +02:00
|
|
|
color: black;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar tr.entry {
|
2015-05-25 00:50:09 +02:00
|
|
|
display: none;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: #e6e6e6;
|
|
|
|
border: 0;
|
2015-05-25 00:50:09 +02:00
|
|
|
border-bottom: 1px solid white;
|
|
|
|
font-size: 13px;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry:hover {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: #f0f0f0;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td:first-of-type {
|
2015-05-21 20:15:17 +02:00
|
|
|
border: 0;
|
|
|
|
border-right: 1px solid white;
|
2015-05-25 00:50:09 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action {
|
2015-05-25 00:50:09 +02:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2015-05-21 20:15:17 +02:00
|
|
|
cursor: pointer;
|
2015-05-25 00:50:09 +02:00
|
|
|
height: 2em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span {
|
2015-05-25 00:50:09 +02:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2015-05-21 20:15:17 +02:00
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
2015-05-25 00:50:09 +02:00
|
|
|
opacity: 0.2;
|
|
|
|
visibility: hidden;
|
|
|
|
width: 33.33%;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(0, 160, 0, 0.3);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(255, 194, 57, 0.4);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.noop {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(108, 108, 108, 0.3);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.noop {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(96, 96, 96, 0.4);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(192, 0, 0, 0.3);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(0, 19, 110, 0.4);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(0, 160, 0, 1);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(255, 194, 57, 1);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.noop {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(108, 108, 108, 1);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(192, 0, 0, 1);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgba(0, 19, 110, 1);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action:not(.own):hover > span {
|
2015-05-21 20:15:17 +02:00
|
|
|
opacity: 0.2;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action:not(.own):hover > span:hover {
|
2015-05-21 20:15:17 +02:00
|
|
|
opacity: 0.75;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgb(0, 160, 0);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.allow {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgb(255, 194, 57);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.noop {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgb(108, 108, 108);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgb(192, 0, 0);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
body.colorBlind #netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.block {
|
2015-05-21 20:15:17 +02:00
|
|
|
background-color: rgb(0, 19, 110);
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td.url {
|
2015-05-25 00:50:09 +02:00
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 4px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.static > p {
|
2015-06-07 00:31:38 +02:00
|
|
|
margin: 0.75em 0;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.static textarea {
|
2015-06-07 00:31:38 +02:00
|
|
|
box-sizing: border-box;
|
2015-06-08 23:50:24 +02:00
|
|
|
direction: ltr;
|
2015-06-07 00:31:38 +02:00
|
|
|
height: 6em;
|
|
|
|
resize: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
#netFilteringDialog .dialog > div.containers > div.static > p:nth-of-type(2) {
|
2015-06-07 00:31:38 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
|
|
|
|
#filterFinderDialog .dialog {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
#filterFinderDialog .dialog code {
|
|
|
|
background: #eee;
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
#filterFinderDialog .dialog ul {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
#filterFinderDialog .dialog > *:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
#filterFinderDialog .dialog > *:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2015-05-25 00:50:09 +02:00
|
|
|
.hide {
|
|
|
|
display: none;
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|