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 /* Outer frame of the dialog. */ | 5 /* Outer frame of the dialog. */ |
6 body { | 6 body { |
7 -webkit-box-flex: 1; | 7 -webkit-box-flex: 1; |
8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
9 -webkit-transition: opacity 70ms linear; | 9 -webkit-transition: opacity 70ms linear; |
10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 height: 32px; | 163 height: 32px; |
164 padding-bottom: 8px; | 164 padding-bottom: 8px; |
165 padding-top: 8px; | 165 padding-top: 8px; |
166 } | 166 } |
167 | 167 |
168 /* Main part of the dialog between header and footer. */ | 168 /* Main part of the dialog between header and footer. */ |
169 .dialog-container { | 169 .dialog-container { |
170 -webkit-box-align: stretch; | 170 -webkit-box-align: stretch; |
171 -webkit-box-flex: 1; | 171 -webkit-box-flex: 1; |
172 -webkit-box-orient: horizontal; | 172 -webkit-box-orient: horizontal; |
| 173 background-color: white; /* Makes #drag-image-container invisible. */ |
173 display: -webkit-box; | 174 display: -webkit-box; |
174 overflow: hidden; | 175 overflow: hidden; |
175 position: relative; | 176 position: relative; |
176 } | 177 } |
177 | 178 |
178 /* List/grid and preview are inside this container. */ | 179 /* List/grid and preview are inside this container. */ |
179 .dialog-main { | 180 .dialog-main { |
180 -webkit-box-align: stretch; | 181 -webkit-box-align: stretch; |
181 -webkit-box-flex: 1; | 182 -webkit-box-flex: 1; |
182 -webkit-box-orient: vertical; | 183 -webkit-box-orient: vertical; |
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 top: 0; | 1241 top: 0; |
1241 width: 40px; | 1242 width: 40px; |
1242 } | 1243 } |
1243 | 1244 |
1244 .unmounted-panel:not([loading]) > .gdata.loading, | 1245 .unmounted-panel:not([loading]) > .gdata.loading, |
1245 .unmounted-panel:not([error]) > .gdata.error, | 1246 .unmounted-panel:not([error]) > .gdata.error, |
1246 .unmounted-panel:not([retry]) > .gdata.retry, | 1247 .unmounted-panel:not([retry]) > .gdata.retry, |
1247 .unmounted-panel:not([retry]) > .gdata.learn-more { | 1248 .unmounted-panel:not([retry]) > .gdata.learn-more { |
1248 display: none; | 1249 display: none; |
1249 } | 1250 } |
OLD | NEW |