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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 background-position: right; | 99 background-position: right; |
100 } | 100 } |
101 | 101 |
102 .extension-title { | 102 .extension-title { |
103 -webkit-padding-end: 20px; | 103 -webkit-padding-end: 20px; |
104 color: rgb(48, 57, 66); | 104 color: rgb(48, 57, 66); |
105 font-size: 14px; | 105 font-size: 14px; |
106 font-weight: 500; | 106 font-weight: 500; |
107 } | 107 } |
108 | 108 |
| 109 .inactive-extension .extension-title { |
| 110 color: inherit; |
| 111 } |
| 112 |
109 .extension-version { | 113 .extension-version { |
110 -webkit-padding-end: 7px; | 114 -webkit-padding-end: 7px; |
111 font-size: 13px; | 115 font-size: 13px; |
112 font-weight: 400; | 116 font-weight: 400; |
113 } | 117 } |
114 | 118 |
115 .extension-description { | 119 .extension-description { |
116 -webkit-padding-end: 5px; | 120 -webkit-padding-end: 5px; |
117 font-size: 13px; | 121 font-size: 13px; |
118 margin: 5px 0; | 122 margin: 5px 0; |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 | 260 |
257 /* Managed mode */ | 261 /* Managed mode */ |
258 | 262 |
259 .page:not(.managed-mode) #managed-mode-banner { | 263 .page:not(.managed-mode) #managed-mode-banner { |
260 display: none; | 264 display: none; |
261 } | 265 } |
262 | 266 |
263 .managed-mode .more-extensions-link { | 267 .managed-mode .more-extensions-link { |
264 display: none; | 268 display: none; |
265 } | 269 } |
OLD | NEW |