uBlock/src/css/3p-filters.css

181 lines
3.8 KiB
CSS
Raw Normal View History

@keyframes spin {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); }
}
2014-08-23 21:13:34 +02:00
ul {
padding: 0;
list-style-type: none;
2014-08-23 18:08:02 +02:00
}
#options li {
2014-09-09 16:53:47 +02:00
margin-bottom: 0.5em;
}
2017-01-22 22:05:16 +01:00
#listsOfBlockedHostsPrompt {
cursor: pointer;
}
#listsOfBlockedHostsPrompt:before {
color: #aaa;
content: '\2212 ';
}
body.hideUnused #listsOfBlockedHostsPrompt:before {
content: '+ ';
}
#lists {
2014-08-23 18:08:02 +02:00
margin: 0.5em 0 0 0;
2017-01-22 22:05:16 +01:00
padding-left: 0.5em;
padding-right: 0em;
2014-08-23 18:08:02 +02:00
}
body[dir="rtl"] #lists {
padding-left: 0em;
2017-01-22 22:05:16 +01:00
padding-right: 0.5em;
}
#lists > li {
2014-08-23 18:08:02 +02:00
margin: 0.5em 0 0 0;
padding: 0;
list-style-type: none;
}
2015-03-23 15:19:43 +01:00
#lists > .groupEntry > .geName {
2015-03-14 19:12:05 +01:00
cursor: pointer;
2015-03-23 15:19:43 +01:00
font-size: 110%;
2015-03-08 22:54:08 +01:00
}
2015-03-23 15:19:43 +01:00
#lists > .groupEntry > .geCount {
font-size: 90%;
}
#lists > .groupEntry:not(:first-child) > .geName:before {
2015-03-14 19:12:05 +01:00
color: #aaa;
content: '\2212 ';
}
2015-03-23 15:19:43 +01:00
#lists > .groupEntry.collapsed > .geName:before {
2015-03-14 19:12:05 +01:00
color: #aaa;
content: '+ ';
}
#lists > .groupEntry > ul {
2014-08-23 18:08:02 +02:00
margin: 0.25em 0 0 0;
}
2015-03-14 19:12:05 +01:00
#lists > .groupEntry.collapsed > ul {
display: none;
}
2015-03-08 22:54:08 +01:00
li.listEntry {
2017-01-22 22:05:16 +01:00
line-height: 150%;
2014-08-23 21:13:34 +02:00
margin: 0 auto 0 auto;
2017-01-22 22:05:16 +01:00
margin-left: 2.5em;
margin-right: 0;
2015-03-20 15:36:38 +01:00
text-indent: -2em;
}
body[dir="rtl"] li.listEntry {
margin-left: 0em;
margin-right: 2.5em;
2014-08-23 21:13:34 +02:00
}
2015-03-08 22:54:08 +01:00
li.listEntry > * {
2017-01-22 22:05:16 +01:00
margin-right: 0.5em;
2015-03-20 15:36:38 +01:00
text-indent: 0;
2014-08-23 21:13:34 +02:00
unicode-bidi: embed;
}
2017-01-22 22:05:16 +01:00
li.listEntry.toRemove > input[type="checkbox"] {
visibility: hidden;
2015-06-10 17:30:57 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry.toRemove > a.content {
text-decoration: line-through;
2015-06-10 17:30:57 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry > .fa {
color: inherit;
display: none;
font-size: 110%;
opacity: 0.5;
vertical-align: baseline;
}
li.listEntry > a.fa:hover {
2015-06-10 17:30:57 +02:00
opacity: 1;
}
2017-01-22 22:05:16 +01:00
li.listEntry.support > a.support {
display: inline-block;
}
li.listEntry > a.remove,
li.listEntry > a.remove:visited {
color: darkred;
2014-08-23 18:08:02 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry.external > a.remove {
display: inline-block;
}
li.listEntry.mustread > a.mustread {
display: inline-block;
}
li.listEntry.mustread > a.mustread:hover {
color: mediumblue;
}
li.listEntry > .counts {
display: none;
font-size: smaller;
}
li.listEntry > input[type="checkbox"]:checked ~ .counts {
display: inline;
}
2014-08-23 18:08:02 +02:00
.dim {
2017-01-22 22:05:16 +01:00
opacity: 0.6;
2014-08-23 18:08:02 +02:00
}
#buttonApply {
2014-09-09 16:53:47 +02:00
display: initial;
2015-02-28 13:58:33 +01:00
position: fixed;
right: 1em;
2015-03-20 15:36:38 +01:00
z-index: 10;
}
body[dir=rtl] #buttonApply {
right: auto;
left: 1em;
2014-08-23 18:08:02 +02:00
}
2014-09-09 16:53:47 +02:00
#buttonApply.disabled {
display: none;
2014-08-23 18:08:02 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry span.status {
2015-04-20 17:10:55 +02:00
color: #444;
2017-01-22 22:05:16 +01:00
cursor: default;
display: none;
2014-08-23 18:08:02 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry span.status:hover {
opacity: 1;
2015-04-17 16:20:45 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry span.unsecure {
color: darkred;
}
2017-01-22 22:05:16 +01:00
li.listEntry.unsecure > input[type="checkbox"]:checked ~ span.unsecure {
display: inline-block;
}
li.listEntry span.failed {
color: darkred;
}
li.listEntry.failed span.failed {
display: inline-block;
}
2017-01-22 22:05:16 +01:00
li.listEntry span.cache {
2014-08-23 18:08:02 +02:00
cursor: pointer;
}
li.listEntry.cached:not(.obsolete) > input[type="checkbox"]:checked ~ span.cache {
2017-01-22 22:05:16 +01:00
display: inline-block;
2014-08-23 18:08:02 +02:00
}
2017-01-22 22:05:16 +01:00
li.listEntry span.obsolete {
color: hsl(36, 100%, 40%);
}
body:not(.updating) li.listEntry.obsolete > input[type="checkbox"]:checked ~ span.obsolete {
2017-01-22 22:05:16 +01:00
display: inline-block;
}
2017-01-22 22:05:16 +01:00
li.listEntry span.updating {
transform-origin: 50% 46%;
}
body.updating li.listEntry.obsolete > input[type="checkbox"]:checked ~ span.updating {
animation: spin 2s linear infinite;
display: inline-block;
2014-08-23 18:08:02 +02:00
}
2014-08-23 21:13:34 +02:00
#externalListsDiv {
2017-01-22 22:05:16 +01:00
margin: 1.5em auto 0 1.5em;
}
body[dir=rtl] #externalListsDiv {
2017-01-22 22:05:16 +01:00
margin: 1.5em 1.5em 0 auto;
2014-08-23 21:13:34 +02:00
}
2014-08-23 18:08:02 +02:00
#externalLists {
box-sizing: border-box;
2017-01-22 22:05:16 +01:00
height: 8em;
margin-top: 0.25em;
white-space: pre;
width: 100%;
2015-03-06 16:22:30 +01:00
word-wrap: normal;
2014-08-23 18:08:02 +02:00
}