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 /* 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 color: #aaa; | 118 color: #aaa; |
119 font-size: 12px; | 119 font-size: 12px; |
120 } | 120 } |
121 | 121 |
122 button.detail-view > img, | 122 button.detail-view > img, |
123 button.thumbnail-view > img { | 123 button.thumbnail-view > img { |
124 position: relative; | 124 position: relative; |
125 top: 1px; | 125 top: 1px; |
126 } | 126 } |
127 | 127 |
128 .list-container { | 128 .left-column { |
| 129 display: -webkit-box; |
129 -webkit-box-orient: vertical; | 130 -webkit-box-orient: vertical; |
130 -webkit-box-flex: 1; | 131 -webkit-box-flex: 1; |
| 132 } |
| 133 |
| 134 .list-container { |
131 display: -webkit-box; | 135 display: -webkit-box; |
| 136 -webkit-box-flex: 1; |
132 position: relative; | 137 position: relative; |
133 } | 138 } |
134 | 139 |
| 140 .downloads-warning { |
| 141 display: -webkit-box; |
| 142 -webkit-box-orient: horizontal; |
| 143 height: 0; |
| 144 -webkit-transition: height 0.07s linear; |
| 145 background-color: #f0f0f0; |
| 146 font-size: 13px; |
| 147 color: #666; |
| 148 -webkit-box-align: center; |
| 149 overflow: hidden; |
| 150 } |
| 151 |
| 152 .downloads-warning img { |
| 153 display: -webkit-box; |
| 154 padding: 15px; |
| 155 } |
| 156 |
| 157 .downloads-warning div { |
| 158 display: -webkit-box; |
| 159 -webkit-box-flex: 1; |
| 160 } |
| 161 |
135 /* The cr.ui.Grid representing the detailed file list. */ | 162 /* The cr.ui.Grid representing the detailed file list. */ |
136 .thumbnail-grid { | 163 .thumbnail-grid { |
137 position: absolute; | 164 position: absolute; |
138 top: 0; | 165 top: 0; |
139 left: 0; | 166 left: 0; |
140 border: 0; | 167 border: 0; |
141 overflow-y: scroll; | 168 overflow-y: scroll; |
142 } | 169 } |
143 | 170 |
144 /* An item in the thumbnail view. */ | 171 /* An item in the thumbnail view. */ |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 522 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
496 .overlay-pane { | 523 .overlay-pane { |
497 position: absolute; | 524 position: absolute; |
498 top: 0; | 525 top: 0; |
499 left: 0; | 526 left: 0; |
500 width: 100%; | 527 width: 100%; |
501 height: 100%; | 528 height: 100%; |
502 border: none; | 529 border: none; |
503 z-index: 100; | 530 z-index: 100; |
504 } | 531 } |
OLD | NEW |