aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/3p-filters.css
blob: a9b13ea47f0889d9097304db526621474fde2a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
ul {
    padding: 0;
    list-style-type: none;
    }
#options {
    margin-top: 0;
    }
#options li {
    margin-bottom: 0.5em;
    }
#lists {
    margin: 0.5em 0 0 0;
    padding-left: 1em;
    padding-right: 0em;
    }
body[dir=rtl] #lists {
    padding-left: 0em;
    padding-right: 1em;
    }
#lists > li {
    margin: 0.5em 0 0 0;
    padding: 0;
    font-size: 15px;
    list-style-type: none;
    }
#lists > li > ul {
    margin: 0.25em 0 0 0;
    }
li.listDetails {
    font-size: 14px;
    margin: 0 auto 0 auto;
    margin-left: 1em;
    margin-right: 0em;
    }
body[dir=rtl] li.listDetails {
    margin-left: 0em;
    margin-right: 1em;
    }
li.listDetails > * {
    unicode-bidi: embed;
    }
li.listDetails > a:nth-of-type(2) {
    font-size: 13px;
    opacity: 0.5;
    }
.dim {
    opacity: 0.5;
    }
/* I designed the button with: http://charliepark.org/bootstrap_buttons/ */
button.custom {
    padding: 5px;
    border: 1px solid transparent;
    border-color: #80b3ff #80b3ff hsl(216, 100%, 75%);
    border-radius: 3px;
    background-color: hsl(216, 100%, 75%);
    background-image: linear-gradient(#a8cbff, #80b3ff);
    background-repeat: repeat-x;
    color: #222;
    cursor: pointer;
    opacity: 0.8;
    }
button.custom.disabled {
    border-color: #dddddd #dddddd hsl(36, 0%, 85%);
    background-color: hsl(36, 0%, 72%);
    background-image: linear-gradient(#f2f2f2, #dddddd);
    color: #aaa;
    pointer-events: none;
    }
button.custom:hover {
    opacity: 1.0;
    }
button.custom.reloadAll:not(.disabled) {
    border-color: #ffcc7f #ffcc7f hsl(36, 100%, 73%);
    background-color: hsl(36, 100%, 75%);
    background-image: linear-gradient(#ffdca8, #ffcc7f);
    }
#buttonApply {
    position: fixed;
    display: initial;
    top: 1em;
    right: 1em;
    }
body[dir=rtl] #buttonApply {
    right: auto;
    left: 1em;
    }
#buttonApply.disabled {
    display: none;
    }
span.status {
    margin: 0;
    border: 1px solid transparent;
    padding: 1px 2px;
    display: inline-block;
    font-size: 11px;
    opacity: 0.7;
}
span.purge {
    border-color: #ddd;
    color: #444;
    background-color: #eee;
    cursor: pointer;
    }
span.purge:hover {
    opacity: 1;
    }
span.obsolete {
    border-color: hsl(36, 100%, 73%);
    color: #222;
    background-color: hsl(36, 100%, 75%);
    }
#externalListsDiv {
    margin: 2em auto 0 2em;
    }
body[dir=rtl] #externalListsDiv {
    margin: 2em 2em 0;
    }
#externalLists {
    font-size: smaller;
    width: 48em;
    height: 8em;
    white-space: pre;
    }
body #busyOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    opacity: 0.5;
    cursor: wait;
    display: none;
    z-index: 1000;
    }
body.busy #busyOverlay {
    display: block;
    }