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 } | 7 } |
8 | 8 |
9 html[dir="rtl"] body.uber-frame { | 9 html[dir="rtl"] body.uber-frame { |
10 /* Enable vertical scrollbar at all times in RTL to avoid visual glitches when | 10 /* Enable vertical scrollbar at all times in RTL to avoid visual glitches when |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 width: 100px; | 48 width: 100px; |
49 } | 49 } |
50 | 50 |
51 body.uber-frame header, | 51 body.uber-frame header, |
52 body.uber-frame header > * { | 52 body.uber-frame header > * { |
53 -webkit-box-flex: 1; | 53 -webkit-box-flex: 1; |
54 display: -webkit-box; | 54 display: -webkit-box; |
55 } | 55 } |
56 | 56 |
57 body.uber-frame header > h1 { | 57 body.uber-frame header > h1 { |
58 border-bottom: 1px solid #f7f7f7; | 58 border-bottom: 1px solid #eee; |
59 margin: 0; | 59 margin: 0; |
60 padding: 21px 0 13px; | 60 padding: 21px 0 13px; |
61 } | 61 } |
| 62 |
| 63 body.uber-frame footer { |
| 64 border-top: 1px solid #eee; |
| 65 margin-top: 16px; |
| 66 /* min-width and max-width should match the header */ |
| 67 min-width: 600px; |
| 68 max-width: 638px; |
| 69 padding: 8px 0; |
| 70 } |
OLD | NEW |