OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 * { | 7 * { |
8 margin: 0; | 8 margin: 0; |
9 padding: 0; | 9 padding: 0; |
10 } | 10 } |
11 | 11 |
| 12 html { |
| 13 overflow: hidden; |
| 14 } |
| 15 |
12 /* Outer frame of the dialog. */ | 16 /* Outer frame of the dialog. */ |
13 body { | 17 body { |
14 -webkit-box-orient: vertical; | 18 -webkit-box-orient: vertical; |
15 -webkit-user-select: none; | 19 -webkit-user-select: none; |
16 display: -webkit-box; | 20 display: -webkit-box; |
17 font-family: segoe ui, arial, helvetica, sans-serif; | 21 font-family: segoe ui, arial, helvetica, sans-serif; |
18 font-size: 12px; | 22 font-size: 12px; |
19 height: 100%; | 23 height: 100%; |
20 min-height: 150px; | 24 min-height: 150px; |
21 position: absolute; | 25 position: absolute; |
(...skipping 11 matching lines...) Expand all Loading... |
33 margin-bottom: 4px; | 37 margin-bottom: 4px; |
34 padding: 0px 12px 4px 12px; | 38 padding: 0px 12px 4px 12px; |
35 } | 39 } |
36 | 40 |
37 /* Container for the detail list views. */ | 41 /* Container for the detail list views. */ |
38 .dialog-body { | 42 .dialog-body { |
39 -webkit-box-flex: 1; | 43 -webkit-box-flex: 1; |
40 border: 1px #aaa solid; | 44 border: 1px #aaa solid; |
41 border-radius: 3px; | 45 border-radius: 3px; |
42 display: -webkit-box; | 46 display: -webkit-box; |
43 margin: 4px; | 47 margin: 4px 4px 2px; |
44 } | 48 } |
45 | 49 |
46 /* Column text containers. */ | 50 /* Column text containers. */ |
47 .list-container { | 51 .list-container { |
48 -webkit-box-flex: 1; | 52 -webkit-box-flex: 1; |
49 display: -webkit-box; | 53 display: -webkit-box; |
50 } | 54 } |
51 | 55 |
52 /* Table splitter element */ | 56 /* Table splitter element */ |
53 .table-header-splitter { | 57 .table-header-splitter { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 display: -webkit-box; | 136 display: -webkit-box; |
133 } | 137 } |
134 /* cr.ui.Table has a black focus border by default, which we don't want. */ | 138 /* cr.ui.Table has a black focus border by default, which we don't want. */ |
135 .detail-table:focus { | 139 .detail-table:focus { |
136 border: 0; | 140 border: 0; |
137 } | 141 } |
138 | 142 |
139 /* Container for footer area. */ | 143 /* Container for footer area. */ |
140 .dialog-footer { | 144 .dialog-footer { |
141 display: -webkit-box; | 145 display: -webkit-box; |
142 margin: 4px; | 146 margin: 2px 4px 4px; |
143 } | 147 } |
144 | 148 |
145 /* Container for the ok/cancel buttons. */ | 149 /* Container for the ok/cancel buttons. */ |
146 .footer-left-container { | 150 .footer-left-container { |
147 -webkit-box-align: center; | 151 -webkit-box-align: center; |
148 -webkit-box-flex: 1; | 152 -webkit-box-flex: 1; |
149 display: -webkit-box; | 153 display: -webkit-box; |
150 text-align: left; | 154 text-align: left; |
151 } | 155 } |
152 | 156 |
153 #about-memory-link { | 157 #about-memory-link { |
154 padding-left: 2px; | 158 padding-left: 2px; |
155 color: #1155CC; | 159 color: #1155CC; |
156 } | 160 } |
157 | 161 |
158 /* Container for the ok/cancel buttons. */ | 162 /* Container for the ok/cancel buttons. */ |
159 .footer-right-container { | 163 .footer-right-container { |
160 -webkit-box-flex: 1; | 164 -webkit-box-flex: 1; |
161 text-align: right; | 165 text-align: right; |
162 } | 166 } |
163 | 167 |
164 button { | 168 button { |
165 margin: 2px 0 2px 8px; | 169 margin: 2px 0 2px 8px; |
166 padding: 1px 6px; | |
167 } | 170 } |
OLD | NEW |