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 html:not(.focus-outline-visible) | 9 html:not(.focus-outline-visible) |
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { | 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 #dev-controls-spacer { | 94 #dev-controls-spacer { |
95 -webkit-box-flex: 1; | 95 -webkit-box-flex: 1; |
96 } | 96 } |
97 | 97 |
98 #dev-toggle { | 98 #dev-toggle { |
99 margin-top: 0; | 99 margin-top: 0; |
100 text-align: end; | 100 text-align: end; |
101 } | 101 } |
102 | 102 |
| 103 .extension-code { |
| 104 border: 1px solid #ccc; |
| 105 display: flex; |
| 106 font-family: monospace; |
| 107 overflow: auto; |
| 108 white-space: pre; |
| 109 } |
| 110 |
| 111 .extension-code > * { |
| 112 padding: 3px; |
| 113 } |
| 114 |
| 115 .extension-code-line-numbers { |
| 116 align-self: flex-start; |
| 117 background-color: rgba(240, 240, 240, 1); |
| 118 border-right: 1px solid #ccc; |
| 119 color: rgba(128, 128, 128, 1); |
| 120 flex-shrink: 0; |
| 121 text-align: right; |
| 122 } |
| 123 |
103 #extension-settings:not(.dev-mode) .developer-extras { | 124 #extension-settings:not(.dev-mode) .developer-extras { |
104 display: none; | 125 display: none; |
105 } | 126 } |
106 | 127 |
107 .developer-extras > div, | 128 .developer-extras > div, |
108 .permanent-warnings > div { | 129 .permanent-warnings > div { |
109 margin: 5px 0; | 130 margin: 5px 0; |
110 } | 131 } |
111 | 132 |
112 #extension-settings #page-header { | 133 #extension-settings #page-header { |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 /* Sideload Wipeout */ | 387 /* Sideload Wipeout */ |
367 | 388 |
368 .sideload-wipeout-learn-more { | 389 .sideload-wipeout-learn-more { |
369 text-decoration: none; | 390 text-decoration: none; |
370 } | 391 } |
371 | 392 |
372 .sideload-wipeout-banner .page-banner-text { | 393 .sideload-wipeout-banner .page-banner-text { |
373 -webkit-padding-start: 8px; | 394 -webkit-padding-start: 8px; |
374 background-image: none; | 395 background-image: none; |
375 } | 396 } |
OLD | NEW |