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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 display: block; | 353 display: block; |
354 width: 100px; | 354 width: 100px; |
355 } | 355 } |
356 | 356 |
357 /* Trash */ | 357 /* Trash */ |
358 | 358 |
359 #extension-settings .trash { | 359 #extension-settings .trash { |
360 -webkit-transition: opacity 200ms; | 360 -webkit-transition: opacity 200ms; |
361 height: 22px; | 361 height: 22px; |
362 opacity: 0.8; | 362 opacity: 0.8; |
363 position: absolute; | 363 position: relative; |
364 right: 0; | 364 right: 0; |
365 top: 3px; | 365 top: 6px; |
366 vertical-align: middle; | |
367 } | 366 } |
368 | 367 |
369 html[dir='rtl'] #extension-settings .trash { | 368 html[dir='rtl'] #extension-settings .trash { |
370 left: 0; | 369 left: 0; |
371 right: auto; | 370 right: auto; |
372 } | 371 } |
373 | 372 |
374 .extension-list-item:not(:hover) .trash:not(:focus) { | 373 .extension-list-item:not(:hover) .trash:not(:focus) { |
375 opacity: 0; | 374 opacity: 0; |
376 } | 375 } |
(...skipping 24 matching lines...) Expand all Loading... |
401 /* Sideload Wipeout */ | 400 /* Sideload Wipeout */ |
402 | 401 |
403 .sideload-wipeout-learn-more { | 402 .sideload-wipeout-learn-more { |
404 text-decoration: none; | 403 text-decoration: none; |
405 } | 404 } |
406 | 405 |
407 .sideload-wipeout-banner .page-banner-text { | 406 .sideload-wipeout-banner .page-banner-text { |
408 -webkit-padding-start: 8px; | 407 -webkit-padding-start: 8px; |
409 background-image: none; | 408 background-image: none; |
410 } | 409 } |
OLD | NEW |