Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 * | 1 * |
2 { | 2 { |
3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif; | 3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif; |
4 font-size: 11px; | 4 font-size: 11px; |
5 box-sizing: border-box; | 5 box-sizing: border-box; |
6 } | 6 } |
7 | 7 |
8 html | 8 html |
9 { | 9 { |
10 height: 100%; | 10 height: 100%; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 { | 123 { |
124 color: green; | 124 color: green; |
125 } | 125 } |
126 | 126 |
127 body.dark #items tr[data-state=whitelisted] | 127 body.dark #items tr[data-state=whitelisted] |
128 { | 128 { |
129 color: #389c22; | 129 color: #389c22; |
130 } | 130 } |
131 | 131 |
132 #items[data-filter-state=blocked] tr:not([data-state=blocked]), | 132 #items[data-filter-state=blocked] tr:not([data-state=blocked]), |
133 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]), | 133 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) |
Thomas Greiner
2017/08/22 11:21:47
This is an invalid selector due to the trailing co
Jon Sonesen
2017/08/24 11:29:06
Acknowledged.
| |
134 { | 134 { |
135 display: none; | 135 display: none; |
136 } | 136 } |
137 | 137 |
138 .changed, .unnamed | 138 .changed, .unnamed |
139 { | 139 { |
140 font-style: italic | 140 font-style: italic |
141 } | 141 } |
142 | 142 |
143 .request-wrapper, .filter-wrapper | 143 .request-wrapper, .filter-wrapper |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
223 | 223 |
224 .filtered-by-search | 224 .filtered-by-search |
225 { | 225 { |
226 display: none; | 226 display: none; |
227 } | 227 } |
228 | 228 |
229 body.dark #reload | 229 body.dark #reload |
230 { | 230 { |
231 color: #2a67e7; | 231 color: #2a67e7; |
232 } | 232 } |
LEFT | RIGHT |