| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 .loading #get-more-extensions, | 82 .loading #get-more-extensions, |
| 83 #extension-settings-list:not(.empty-extension-list) ~ #no-extensions, | 83 #extension-settings-list:not(.empty-extension-list) ~ #no-extensions, |
| 84 .empty-extension-list ~ #get-more-extensions { | 84 .empty-extension-list ~ #get-more-extensions { |
| 85 display: none; | 85 display: none; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .extension-list-item-wrapper { | 88 .extension-list-item-wrapper { |
| 89 margin: 23px 0; | 89 margin: 23px 0; |
| 90 } | 90 } |
| 91 | 91 |
| 92 #install-drop-target { |
| 93 -webkit-transition: opacity 250ms linear; |
| 94 background: #eee; |
| 95 border: 1px dashed #ccc; |
| 96 border-radius: 4px; |
| 97 color: #777; |
| 98 display: none; |
| 99 font-weight: bold; |
| 100 margin: 2em 2em 2em 0; |
| 101 padding: 2em; |
| 102 text-align: center; |
| 103 } |
| 104 |
| 105 body.drag-target #install-drop-target { |
| 106 display: block; |
| 107 } |
| 108 |
| 109 #install-drop-target.active { |
| 110 border-color: rgb(48, 57, 66); |
| 111 color: rgb(48, 57, 66); |
| 112 } |
| 113 |
| 92 .extension-list-item { | 114 .extension-list-item { |
| 93 background-repeat: no-repeat; | 115 background-repeat: no-repeat; |
| 94 display: -webkit-box; | 116 display: -webkit-box; |
| 95 min-height: 48px; | 117 min-height: 48px; |
| 96 } | 118 } |
| 97 | 119 |
| 98 html[dir='rtl'] .extension-list-item { | 120 html[dir='rtl'] .extension-list-item { |
| 99 background-position: right; | 121 background-position: right; |
| 100 } | 122 } |
| 101 | 123 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 right: auto; | 243 right: auto; |
| 222 } | 244 } |
| 223 | 245 |
| 224 .extension-list-item:not(:hover) .trash:not(:focus) { | 246 .extension-list-item:not(:hover) .trash:not(:focus) { |
| 225 opacity: 0; | 247 opacity: 0; |
| 226 } | 248 } |
| 227 | 249 |
| 228 .extension-list-item-wrapper.may-not-disable .trash { | 250 .extension-list-item-wrapper.may-not-disable .trash { |
| 229 visibility: hidden; | 251 visibility: hidden; |
| 230 } | 252 } |
| OLD | NEW |