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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 .preview-summary { | 338 .preview-summary { |
339 border-top: 1px #aaa solid; | 339 border-top: 1px #aaa solid; |
340 color: #666; | 340 color: #666; |
341 font-weight: bold; | 341 font-weight: bold; |
342 overflow: hidden; | 342 overflow: hidden; |
343 padding: 5px; | 343 padding: 5px; |
344 text-overflow: ellipsis; | 344 text-overflow: ellipsis; |
345 white-space: nowrap; | 345 white-space: nowrap; |
346 } | 346 } |
347 | 347 |
348 .filename-label { | 348 .dialog-footer .filename-label { |
349 -webkit-box-orient: horizontal; | 349 -webkit-box-orient: horizontal; |
350 color: #666; | 350 color: #666; |
351 display: -webkit-box; | 351 display: -webkit-box; |
352 font-weight: bold; | 352 font-weight: bold; |
353 padding-top: 4px; | 353 padding-top: 4px; |
354 padding-right: 4px; | 354 padding-right: 4px; |
355 } | 355 } |
356 | 356 |
357 .filename-input { | 357 .filename-input { |
358 -webkit-box-orient: horizontal; | 358 -webkit-box-orient: horizontal; |
359 -webkit-box-flex: 1; | 359 -webkit-box-flex: 1; |
360 display: -webkit-box; | 360 display: -webkit-box; |
361 } | 361 } |
362 | 362 |
363 /* A horizontal spring. */ | 363 /* A horizontal spring. */ |
364 .horizontal-spacer { | 364 .horizontal-spacer { |
365 -webkit-box-orient: horizontal; | 365 -webkit-box-orient: horizontal; |
366 -webkit-box-flex: 1; | 366 -webkit-box-flex: 1; |
367 display: -webkit-box; | 367 display: -webkit-box; |
368 } | 368 } |
369 | 369 |
370 /* A vertical spring. */ | 370 /* A vertical spring. */ |
371 .vertical-spacer { | 371 .vertical-spacer { |
372 -webkit-box-orient: vertical; | 372 -webkit-box-orient: vertical; |
373 -webkit-box-flex: 1; | 373 -webkit-box-flex: 1; |
374 display: -webkit-box; | 374 display: -webkit-box; |
375 } | 375 } |
OLD | NEW |