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

148 lines
2.9 KiB
CSS
Raw Normal View History

@keyframes spin {
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;
}
#lists {
2014-08-23 18:08:02 +02:00
margin: 0.5em 0 0 0;
padding-left: 1em;
padding-right: 0em;
2014-08-23 18:08:02 +02:00
}
body[dir=rtl] #lists {
padding-left: 0em;
padding-right: 1em;
}
#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 {
2014-08-23 21:13:34 +02:00
margin: 0 auto 0 auto;
2015-03-21 05:04:49 +01:00
margin-left: 3em;
margin-right: 0em;
2015-03-20 15:36:38 +01:00
text-indent: -2em;
}
2015-03-08 22:54:08 +01:00
body[dir=rtl] li.listEntry {
margin-left: 0em;
margin-right: 1em;
2014-08-23 21:13:34 +02:00
}
2015-03-08 22:54:08 +01:00
li.listEntry > * {
2015-03-20 15:36:38 +01:00
text-indent: 0;
2014-08-23 21:13:34 +02:00
unicode-bidi: embed;
}
2015-03-08 22:54:08 +01:00
li.listEntry > a:nth-of-type(2) {
2015-06-10 17:30:57 +02:00
font-size: 16px;
opacity: 0.7;
}
li.listEntry > a:nth-of-type(2),
li.listEntry > a:nth-of-type(2):visited {
color: mediumblue;
}
li.listEntry > a:nth-of-type(2):hover {
opacity: 1;
}
li.listEntry > a:nth-of-type(3) {
2016-11-05 19:48:42 +01:00
font-size: smaller;
2014-08-23 21:13:34 +02:00
opacity: 0.5;
2014-08-23 18:08:02 +02:00
}
.dim {
opacity: 0.5;
}
#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
}
span.status {
border: 1px solid transparent;
2015-04-20 17:10:55 +02:00
color: #444;
display: none;
2015-03-08 22:54:08 +01:00
font-size: smaller;
line-height: 1;
2015-04-20 17:10:55 +02:00
margin: 0 0 0 0.5em;
opacity: 0.8;
padding: 1px 2px;
2014-08-23 18:08:02 +02:00
}
2015-04-17 16:20:45 +02:00
span.unsecure {
background-color: hsl(0, 100%, 88%);
border-color: hsl(0, 100%, 83%);
2015-04-17 16:20:45 +02:00
}
li.listEntry.unsecure span.unsecure {
display: inline;
}
span.obsolete {
background-color: hsl(36, 100%, 80%);
border-color: hsl(36, 100%, 75%);
}
li.listEntry.obsolete > input[type="checkbox"]:checked ~ span.obsolete {
display: inline;
}
2014-08-23 18:08:02 +02:00
span.purge {
border-color: #ddd;
background-color: #eee;
cursor: pointer;
}
span.purge:hover {
opacity: 1;
}
li.listEntry.cached span.purge {
display: inline;
}
span.updating {
border: none;
padding: 0;
}
li.listEntry.updating 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 {
margin: 2em auto 0 2em;
}
body[dir=rtl] #externalListsDiv {
margin: 2em 2em 0;
2014-08-23 21:13:34 +02:00
}
2014-08-23 18:08:02 +02:00
#externalLists {
box-sizing: border-box;
height: 10em;
white-space: pre;
width: 100%;
2015-03-06 16:22:30 +01:00
word-wrap: normal;
2014-08-23 18:08:02 +02:00
}