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.uber-frame { |
6 -webkit-margin-start: 155px; | 6 -webkit-margin-start: 155px; |
7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
8 } | 8 } |
9 | 9 |
10 html[dir='rtl'] body.uber-frame { | 10 html[dir='rtl'] body.uber-frame { |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 88 } |
89 | 89 |
90 body.uber-frame footer { | 90 body.uber-frame footer { |
91 border-top: 1px solid #eee; | 91 border-top: 1px solid #eee; |
92 margin-top: 16px; | 92 margin-top: 16px; |
93 /* min-width and max-width should match the header */ | 93 /* min-width and max-width should match the header */ |
94 max-width: 638px; | 94 max-width: 638px; |
95 min-width: 600px; | 95 min-width: 600px; |
96 padding: 8px 0; | 96 padding: 8px 0; |
97 } | 97 } |
| 98 |
| 99 /* Sections are used in options pages, help page and history page. This defines |
| 100 * the section metrics to match the header metrics above. */ |
| 101 body.uber-frame section { |
| 102 -webkit-padding-start: 18px; |
| 103 margin-bottom: 24px; |
| 104 margin-top: 8px; |
| 105 max-width: 600px; |
| 106 } |
| 107 |
| 108 body.uber-frame section:last-of-type { |
| 109 margin-bottom: 0; |
| 110 } |
| 111 |
| 112 body.uber-frame section > h3 { |
| 113 -webkit-margin-start: -18px; |
| 114 } |
| 115 |
| 116 body.uber-frame section > div:only-of-type { |
| 117 -webkit-box-flex: 1; |
| 118 } |
OLD | NEW |