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 body.uber-frame { | 5 body { |
6 -webkit-margin-start: 23px; | 6 -webkit-margin-start: 23px; |
7 } | 7 } |
8 | 8 |
9 body.uber-frame > .page { | 9 body > .page { |
10 -webkit-margin-end: 0; | 10 -webkit-margin-end: 0; |
11 -webkit-padding-end: 24px; | 11 -webkit-padding-end: 24px; |
12 } | 12 } |
13 | 13 |
14 #filter-overlay { | 14 #filter-overlay { |
15 padding-bottom: 0; | 15 padding-bottom: 0; |
16 position: fixed; | 16 position: fixed; |
17 z-index: 4; | 17 z-index: 4; |
18 } | 18 } |
19 | 19 |
20 body.uber-frame header { | 20 body header { |
21 left: 23px; | 21 left: 23px; |
22 max-width: none; | 22 max-width: none; |
23 } | 23 } |
24 | 24 |
25 html[dir='rtl'] body.uber-frame header { | 25 html[dir='rtl'] body header { |
26 right: 23px; | 26 right: 23px; |
27 } | 27 } |
28 | 28 |
29 body.uber-frame section { | 29 body section { |
30 max-width: none; | 30 max-width: none; |
31 } | 31 } |
32 | 32 |
33 #status-box-container { | 33 #status-box-container { |
34 display: -webkit-flex; | 34 display: -webkit-flex; |
35 } | 35 } |
36 | 36 |
37 fieldset { | 37 fieldset { |
38 border: 1px solid rgb(217, 217, 217); | 38 border: 1px solid rgb(217, 217, 217); |
39 display: inline; | 39 display: inline; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 white-space: pre; | 174 white-space: pre; |
175 word-wrap: break-word; | 175 word-wrap: break-word; |
176 } | 176 } |
177 | 177 |
178 html:not(.focus-outline-visible) | 178 html:not(.focus-outline-visible) |
179 :enabled:focus:-webkit-any(input[type='checkbox'], | 179 :enabled:focus:-webkit-any(input[type='checkbox'], |
180 input[type='radio'], button) { | 180 input[type='radio'], button) { |
181 /* Cancel border-color for :focus specified in widgets.css. */ | 181 /* Cancel border-color for :focus specified in widgets.css. */ |
182 border-color: rgba(0, 0, 0, 0.25); | 182 border-color: rgba(0, 0, 0, 0.25); |
183 } | 183 } |
OLD | NEW |