OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 html.loading * { | 5 html.loading * { |
6 -webkit-transition-duration: 0 !important; | 6 -webkit-transition-duration: 0 !important; |
7 } | 7 } |
8 | 8 |
9 html:not(.focus-outline-visible) | 9 html:not(.focus-outline-visible) |
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { | 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 } | 223 } |
224 | 224 |
225 .corrupt-install-message { | 225 .corrupt-install-message { |
226 color: rgb(196, 42, 23); | 226 color: rgb(196, 42, 23); |
227 } | 227 } |
228 | 228 |
229 .action-links { | 229 .action-links { |
230 margin-bottom: 0.5em; | 230 margin-bottom: 0.5em; |
231 } | 231 } |
232 | 232 |
233 .action-links :-webkit-any(a, .link-button) { | 233 .action-links a { |
234 -webkit-margin-end: 1em; | 234 -webkit-margin-end: 1em; |
235 -webkit-margin-start: 0; | 235 -webkit-margin-start: 0; |
236 } | 236 } |
237 | 237 |
238 .extension-details { | 238 .extension-details { |
239 -webkit-box-flex: 1; | 239 -webkit-box-flex: 1; |
240 -webkit-padding-end: 7px; | 240 -webkit-padding-end: 7px; |
241 -webkit-padding-start: 55px; | 241 -webkit-padding-start: 55px; |
242 } | 242 } |
243 | 243 |
244 .extension-description, | 244 .extension-description, |
245 .extension-version, | 245 .extension-version, |
246 .extension-list-item-wrapper.inactive-extension .extension-details, | 246 .extension-list-item-wrapper.inactive-extension .extension-details, |
247 .location-text, | 247 .location-text, |
248 .blacklist-text, | 248 .blacklist-text, |
249 .enable-checkbox input:disabled + .enable-checkbox-text { | 249 .enable-checkbox input:disabled + .enable-checkbox-text { |
250 color: rgb(151, 156, 160); | 250 color: rgb(151, 156, 160); |
251 } | 251 } |
252 | 252 |
253 .enable-controls { | 253 .enable-controls { |
254 /* Matches right: position of dev controls toggle. */ | 254 /* Matches right: position of dev controls toggle. */ |
255 -webkit-margin-end: 20px; | 255 -webkit-margin-end: 20px; |
256 position: relative; | 256 position: relative; |
257 } | 257 } |
258 | 258 |
259 /* We use x.link-button here so that we get higher specifity than the | 259 /* We use x[is='action-link'] here so that we get higher specifity than the |
260 * link-button rules without resorting to the Dark Side (!IMPORTANT). */ | 260 * action link rules without resorting to the Dark Side (!IMPORTANT). */ |
261 .terminated-reload-link.link-button, | 261 .terminated-reload-link[is='action-link'], |
262 .corrupted-repair-button.link-button { | 262 .corrupted-repair-button[is='action-link'] { |
263 /* Matches width of trash. */ | 263 /* Matches width of trash. */ |
264 -webkit-margin-end: 30px; | 264 -webkit-margin-end: 30px; |
265 } | 265 } |
266 | 266 |
267 .checkbox { | 267 .checkbox { |
268 display: inline-block; | 268 display: inline-block; |
269 } | 269 } |
270 | 270 |
271 .enabled-text { | 271 .enabled-text { |
272 font-weight: bold; | 272 font-weight: bold; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 /* Sideload Wipeout */ | 408 /* Sideload Wipeout */ |
409 | 409 |
410 .sideload-wipeout-learn-more { | 410 .sideload-wipeout-learn-more { |
411 text-decoration: none; | 411 text-decoration: none; |
412 } | 412 } |
413 | 413 |
414 .sideload-wipeout-banner .page-banner-text { | 414 .sideload-wipeout-banner .page-banner-text { |
415 -webkit-padding-start: 8px; | 415 -webkit-padding-start: 8px; |
416 background-image: none; | 416 background-image: none; |
417 } | 417 } |
OLD | NEW |