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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 opacity: 0; | 242 opacity: 0; |
243 } | 243 } |
244 | 244 |
245 .extension-list-item-wrapper.may-not-disable .trash { | 245 .extension-list-item-wrapper.may-not-disable .trash { |
246 visibility: hidden; | 246 visibility: hidden; |
247 } | 247 } |
248 | 248 |
249 .may-not-disable .optional-controls { | 249 .may-not-disable .optional-controls { |
250 display: none; | 250 display: none; |
251 } | 251 } |
| 252 |
| 253 .dev-mode #dev-controls { |
| 254 display: none; |
| 255 } |
| 256 |
| 257 /* Managed mode */ |
| 258 |
| 259 .page:not(.managed-mode) #managed-mode-banner { |
| 260 display: none; |
| 261 } |
| 262 |
| 263 .managed-mode .more-extensions-link { |
| 264 display: none; |
| 265 } |
OLD | NEW |