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%; |
11 overflow: hidden; | 11 overflow: hidden; |
12 } | 12 } |
13 | 13 |
14 body | 14 body |
15 { | 15 { |
16 margin: 0; | 16 margin: 0; |
17 color: #303942; | 17 color: #303942; |
18 display: flex; | 18 display: flex; |
19 height: 100%; | 19 height: 100%; |
20 flex-direction: column; | 20 flex-direction: column; |
| 21 } |
| 22 |
| 23 body.default |
| 24 { |
| 25 background-color: #ffffff; |
21 } | 26 } |
22 | 27 |
23 body.dark | 28 body.dark |
24 { | 29 { |
25 color: #ffffff; | 30 color: #ffffff; |
26 } | 31 } |
27 | 32 |
28 table | 33 table |
29 { | 34 { |
30 table-layout: fixed; | 35 table-layout: fixed; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 { | 91 { |
87 line-height: 17px; | 92 line-height: 17px; |
88 | 93 |
89 /* This background image gives every other row a gray background. | 94 /* This background image gives every other row a gray background. |
90 * This is simlar to "tr:nth-child(odd) background-color: #eee;". | 95 * This is simlar to "tr:nth-child(odd) background-color: #eee;". |
91 * However, we can't do it that way, since some rows might be hidden. | 96 * However, we can't do it that way, since some rows might be hidden. |
92 */ | 97 */ |
93 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIABAO7u7v///ywAAAAAAQ
BQAAACC4SPqcsYD6OctMYCADs=); | 98 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIABAO7u7v///ywAAAAAAQ
BQAAACC4SPqcsYD6OctMYCADs=); |
94 background-repeat: repeat; | 99 background-repeat: repeat; |
95 } | 100 } |
| 101 |
96 body.dark #items table | 102 body.dark #items table |
97 { | 103 { |
98 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ
BQAAACC4yPqcsID6OctMYCADs=); | 104 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ
BQAAACC4yPqcsID6OctMYCADs=); |
99 } | 105 } |
100 | |
101 | 106 |
102 #items tr | 107 #items tr |
103 { | 108 { |
104 height: 40px; | 109 height: 40px; |
105 } | 110 } |
106 | 111 |
107 #items tr[data-state=blocked] | 112 #items tr[data-state=blocked] |
108 { | 113 { |
109 color: red; | 114 color: red; |
110 } | 115 } |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 235 |
231 .filtered-by-search | 236 .filtered-by-search |
232 { | 237 { |
233 display: none; | 238 display: none; |
234 } | 239 } |
235 | 240 |
236 body.dark #reload | 241 body.dark #reload |
237 { | 242 { |
238 color: #2a67e7; | 243 color: #2a67e7; |
239 } | 244 } |
LEFT | RIGHT |