OLD | NEW |
(Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 * { |
| 8 margin: 0; |
| 9 padding: 0; |
| 10 } |
| 11 |
| 12 /* Outer frame of the dialog. */ |
| 13 body { |
| 14 -webkit-box-orient: vertical; |
| 15 -webkit-user-select: none; |
| 16 display: -webkit-box; |
| 17 font-family: segoe ui, arial, helvetica, sans-serif; |
| 18 height: 100%; |
| 19 min-height: 150px; |
| 20 position: absolute; |
| 21 width: 100%; |
| 22 } |
| 23 |
| 24 /* Container for the detail list views. */ |
| 25 .dialog-body { |
| 26 -webkit-box-flex: 1; |
| 27 -webkit-box-orient: vertical; |
| 28 display: -webkit-box; |
| 29 margin: 6px; |
| 30 } |
| 31 |
| 32 .dialog-body > div { |
| 33 margin: 6px; |
| 34 } |
| 35 |
| 36 #name-form { |
| 37 display: -webkit-box; |
| 38 } |
| 39 |
| 40 #name-form > * { |
| 41 display: block; |
| 42 } |
| 43 |
| 44 #name-form > span { |
| 45 display: inline-block; |
| 46 vertical-align: middle; |
| 47 } |
| 48 |
| 49 #name-form > #new-name { |
| 50 -webkit-box-flex: 1; |
| 51 margin-left: 5px; |
| 52 } |
| 53 |
| 54 #tree-container { |
| 55 -webkit-box-flex: 1; |
| 56 border: 1px solid #AAA; |
| 57 border-radius: 2px; |
| 58 overflow: auto; |
| 59 } |
| 60 |
| 61 #tree { |
| 62 height: 100%; |
| 63 overflow: visible; |
| 64 width: 100%; |
| 65 } |
| 66 |
| 67 #save { |
| 68 float: right; |
| 69 margin-right: 15px; |
| 70 } |
| 71 |
| 72 #cancel { |
| 73 float: right; |
| 74 } |
OLD | NEW |