| 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 /* Developer mode */ | 9 /* Developer mode */ |
| 10 | 10 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 white-space: normal; | 123 white-space: normal; |
| 124 } | 124 } |
| 125 | 125 |
| 126 .extension-details { | 126 .extension-details { |
| 127 -webkit-box-flex: 1; | 127 -webkit-box-flex: 1; |
| 128 -webkit-padding-start: 55px; | 128 -webkit-padding-start: 55px; |
| 129 } | 129 } |
| 130 | 130 |
| 131 .extension-description, | 131 .extension-description, |
| 132 .extension-list-item-wrapper.inactive-extension .extension-details, | 132 .extension-list-item-wrapper.inactive-extension .extension-details, |
| 133 .location-text, |
| 133 .enable-checkbox input:disabled + .enable-checkbox-text { | 134 .enable-checkbox input:disabled + .enable-checkbox-text { |
| 134 color: rgb(151, 156, 160); | 135 color: rgb(151, 156, 160); |
| 135 } | 136 } |
| 136 | 137 |
| 137 .enable-controls { | 138 .enable-controls { |
| 138 /* Matches right: position of dev controls toggle. */ | 139 /* Matches right: position of dev controls toggle. */ |
| 139 -webkit-margin-end: 20px; | 140 -webkit-margin-end: 20px; |
| 140 position: relative; | 141 position: relative; |
| 141 } | 142 } |
| 142 | 143 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 #dropTargetOverlay { | 223 #dropTargetOverlay { |
| 223 color: rgb(48, 57, 66); | 224 color: rgb(48, 57, 66); |
| 224 font-size: 18px; | 225 font-size: 18px; |
| 225 text-align: center; | 226 text-align: center; |
| 226 } | 227 } |
| 227 | 228 |
| 228 #dropTargetOverlay div { | 229 #dropTargetOverlay div { |
| 229 margin: 1em; | 230 margin: 1em; |
| 230 } | 231 } |
| 231 | 232 |
| 233 /* Disabled extensions banner and related elements. */ |
| 234 |
| 235 .page:not(.sideload-wipeout) #sideload-wipeout-banner { |
| 236 display: none; |
| 237 } |
| 238 |
| 239 .extension-disable-reason { |
| 240 padding-left: 12px; |
| 241 } |
| 242 |
| 243 .location-text { |
| 244 display: block; |
| 245 width: 100px; |
| 246 } |
| 247 |
| 232 /* Trash */ | 248 /* Trash */ |
| 233 | 249 |
| 234 #extension-settings .trash { | 250 #extension-settings .trash { |
| 235 -webkit-transition: opacity 200ms; | 251 -webkit-transition: opacity 200ms; |
| 236 height: 22px; | 252 height: 22px; |
| 237 opacity: 0.8; | 253 opacity: 0.8; |
| 238 position: absolute; | 254 position: absolute; |
| 239 right: 0; | 255 right: 0; |
| 240 top: 3px; | 256 top: 3px; |
| 241 vertical-align: middle; | 257 vertical-align: middle; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 260 | 276 |
| 261 /* Managed mode */ | 277 /* Managed mode */ |
| 262 | 278 |
| 263 .page:not(.managed-mode) #managed-mode-banner { | 279 .page:not(.managed-mode) #managed-mode-banner { |
| 264 display: none; | 280 display: none; |
| 265 } | 281 } |
| 266 | 282 |
| 267 .managed-mode .more-extensions-link { | 283 .managed-mode .more-extensions-link { |
| 268 display: none; | 284 display: none; |
| 269 } | 285 } |
| OLD | NEW |