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 |
11 #dev-controls { | 11 #dev-controls { |
12 -webkit-padding-end: 3px; | 12 -webkit-padding-end: 3px; |
13 -webkit-padding-start: 4px; | 13 -webkit-padding-start: 4px; |
14 -webkit-transition: padding 100ms, height 100ms, opacity 100ms; | 14 -webkit-transition: padding 100ms, height 100ms, opacity 100ms; |
15 border-bottom: 1px solid rgb(205, 205, 205); | 15 border-bottom: 1px solid #eee; |
16 display: -webkit-box; | 16 display: -webkit-box; |
17 height: 0; | 17 height: 0; |
18 opacity: 0; | 18 opacity: 0; |
19 overflow: hidden; | 19 overflow: hidden; |
20 } | 20 } |
21 | 21 |
22 #extension-settings.dev-mode #dev-controls { | 22 #extension-settings.dev-mode #dev-controls { |
23 -webkit-transition-duration: 250ms; | 23 -webkit-transition-duration: 250ms; |
24 height: 32px; | 24 height: 32px; |
25 opacity: 1; | 25 opacity: 1; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 vertical-align: middle; | 176 vertical-align: middle; |
177 } | 177 } |
178 | 178 |
179 .extension-list-item:not(:hover) .trash:not(:focus) { | 179 .extension-list-item:not(:hover) .trash:not(:focus) { |
180 opacity: 0; | 180 opacity: 0; |
181 } | 181 } |
182 | 182 |
183 .extension-list-item-wrapper.may-not-disable .trash { | 183 .extension-list-item-wrapper.may-not-disable .trash { |
184 visibility: hidden; | 184 visibility: hidden; |
185 } | 185 } |
OLD | NEW |