OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 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 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
8 body { | 8 body { |
9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 display: -webkit-box; | 79 display: -webkit-box; |
80 padding-left: 1em; | 80 padding-left: 1em; |
81 padding-right: 1em; | 81 padding-right: 1em; |
82 padding-top: 2px; | 82 padding-top: 2px; |
83 position: absolute; | 83 position: absolute; |
84 top: 1px; | 84 top: 1px; |
85 } | 85 } |
86 | 86 |
87 .butter-bar.before-show { | 87 .butter-bar.before-show { |
88 top: -30px; | 88 top: -30px; |
| 89 opacity: 0; |
| 90 } |
| 91 |
| 92 .butter-bar.after-show { |
| 93 top: 50px; |
| 94 opacity: 0; |
89 } | 95 } |
90 | 96 |
91 .butter-bar .content { | 97 .butter-bar .content { |
92 padding-bottom: 8px; | 98 padding-bottom: 8px; |
93 padding-right: 5px; | 99 padding-right: 5px; |
94 } | 100 } |
95 | 101 |
96 .hide-in-butter { | 102 .hide-in-butter { |
97 display: none; | 103 display: none; |
98 } | 104 } |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 left: 0; | 976 left: 0; |
971 width: 100%; | 977 width: 100%; |
972 height: 100%; | 978 height: 100%; |
973 border: none; | 979 border: none; |
974 z-index: 100; | 980 z-index: 100; |
975 } | 981 } |
976 | 982 |
977 menu.file-context-menu { | 983 menu.file-context-menu { |
978 z-index: 4; | 984 z-index: 4; |
979 } | 985 } |
OLD | NEW |