| 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, | 
 |    6 body { | 
 |    7   height: 100%; | 
 |    8   overflow: hidden; | 
 |    9 } | 
 |   10  | 
|    5 html.loading * { |   11 html.loading * { | 
|    6   -webkit-transition-duration: 0 !important; |   12   -webkit-transition-duration: 0 !important; | 
|    7 } |   13 } | 
|    8  |   14  | 
|    9 html:not(.focus-outline-visible) |   15 html:not(.focus-outline-visible) | 
|   10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { |   16 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { | 
|   11   /* Cancel border-color for :focus specified in widgets.css. */ |   17   /* Cancel border-color for :focus specified in widgets.css. */ | 
|   12   border-color: rgba(0, 0, 0, 0.25); |   18   border-color: rgba(0, 0, 0, 0.25); | 
|   13 } |   19 } | 
|   14  |   20  | 
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   83 } |   89 } | 
|   84  |   90  | 
|   85 #extension-settings #page-header { |   91 #extension-settings #page-header { | 
|   86   /* These values match the .page values. */ |   92   /* These values match the .page values. */ | 
|   87   -webkit-margin-end: 24px; |   93   -webkit-margin-end: 24px; | 
|   88   min-width: 576px; |   94   min-width: 576px; | 
|   89 } |   95 } | 
|   90  |   96  | 
|   91 /* Contents */ |   97 /* Contents */ | 
|   92  |   98  | 
 |   99 #page-container { | 
 |  100   height: 100%; | 
 |  101   overflow-y: auto; | 
 |  102 } | 
 |  103  | 
|   93 #extension-settings { |  104 #extension-settings { | 
|   94   max-width: 738px; |  105   max-width: 738px; | 
|   95 } |  106 } | 
|   96  |  107  | 
|   97 #no-extensions-message { |  108 #no-extensions-message { | 
|   98   font-weight: bold; |  109   font-weight: bold; | 
|   99 } |  110 } | 
|  100  |  111  | 
|  101 #suggest-gallery { |  112 #suggest-gallery { | 
|  102   -webkit-padding-start: 10px; |  113   -webkit-padding-start: 10px; | 
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  333 /* Sideload Wipeout */ |  344 /* Sideload Wipeout */ | 
|  334  |  345  | 
|  335 .sideload-wipeout-learn-more { |  346 .sideload-wipeout-learn-more { | 
|  336   text-decoration: none; |  347   text-decoration: none; | 
|  337 } |  348 } | 
|  338  |  349  | 
|  339 .sideload-wipeout-banner .page-banner-text { |  350 .sideload-wipeout-banner .page-banner-text { | 
|  340   -webkit-padding-start: 8px; |  351   -webkit-padding-start: 8px; | 
|  341   background-image: none; |  352   background-image: none; | 
|  342 } |  353 } | 
| OLD | NEW |