Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/devtools-panel.css

Issue 29738571: Issue 6542 - Fix colors of the devtools resource URLs (Closed)
Patch Set: Separate selectors with newlines Created April 3, 2018, 3:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 13 matching lines...) Expand all
24 24
25 html 25 html
26 { 26 {
27 height: 100%; 27 height: 100%;
28 overflow: hidden; 28 overflow: hidden;
29 } 29 }
30 30
31 body 31 body
32 { 32 {
33 margin: 0; 33 margin: 0;
34 color: #303942;
35 display: flex; 34 display: flex;
36 height: 100%; 35 height: 100%;
37 flex-direction: column; 36 flex-direction: column;
38 } 37 }
39 38
39 body,
40 a
41 {
42 color: #303942;
43 }
44
40 body.default 45 body.default
41 { 46 {
42 background-color: #ffffff; 47 background-color: #ffffff;
43 } 48 }
44 49
45 body.dark 50 body.dark,
51 body.dark a
46 { 52 {
47 color: #ffffff; 53 color: #ffffff;
48 } 54 }
49 55
50 table 56 table
51 { 57 {
52 table-layout: fixed; 58 table-layout: fixed;
53 width: 100%; 59 width: 100%;
54 border-collapse: collapse; 60 border-collapse: collapse;
55 } 61 }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 body.dark #items table 125 body.dark #items table
120 { 126 {
121 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=); 127 background-image: url(data:image/gif;base64,R0lGODdhAQBQAIACACQkJExMTCwAAAAAAQ BQAAACC4yPqcsID6OctMYCADs=);
122 } 128 }
123 129
124 #items tr 130 #items tr
125 { 131 {
126 height: 40px; 132 height: 40px;
127 } 133 }
128 134
129 #items tr[data-state=blocked] 135 #items tr[data-state=blocked],
136 #items tr[data-state=blocked] a
130 { 137 {
131 color: red; 138 color: red;
132 } 139 }
133 140
134 body.dark #items tr[data-state=blocked] 141 body.dark #items tr[data-state=blocked],
142 body.dark #items tr[data-state=blocked] a
135 { 143 {
136 color: #ff3a3a; 144 color: #ff3a3a;
137 } 145 }
138 146
139 #items tr[data-state=whitelisted] 147 #items tr[data-state=whitelisted],
148 #items tr[data-state=whitelisted] a
140 { 149 {
141 color: green; 150 color: green;
142 } 151 }
143 152
144 body.dark #items tr[data-state=whitelisted] 153 body.dark #items tr[data-state=whitelisted],
154 body.dark #items tr[data-state=whitelisted] a
145 { 155 {
146 color: #389c22; 156 color: #389c22;
147 } 157 }
148 158
149 #items[data-filter-state=blocked] tr:not([data-state=blocked]), 159 #items[data-filter-state=blocked] tr:not([data-state=blocked]),
150 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]) 160 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted])
151 { 161 {
152 display: none; 162 display: none;
153 } 163 }
154 164
(...skipping 14 matching lines...) Expand all
169 display: none; 179 display: none;
170 } 180 }
171 181
172 .url 182 .url
173 { 183 {
174 width: 100%; 184 width: 100%;
175 } 185 }
176 186
177 .resource-link { 187 .resource-link {
178 text-decoration: none; 188 text-decoration: none;
179 color: #303942;
180 } 189 }
181 190
182 .resource-link:hover { 191 .resource-link:hover {
183 text-decoration: underline; 192 text-decoration: underline;
184 } 193 }
185 194
186 .action-wrapper 195 .action-wrapper
187 { 196 {
188 display: flex; 197 display: flex;
189 width: 100%; 198 width: 100%;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 249
241 .filtered-by-search 250 .filtered-by-search
242 { 251 {
243 display: none; 252 display: none;
244 } 253 }
245 254
246 body.dark #reload 255 body.dark #reload
247 { 256 {
248 color: #2a67e7; 257 color: #2a67e7;
249 } 258 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld