| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 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; |
| 11 -webkit-transition: opacity 70ms linear; | 11 -webkit-transition: opacity 70ms linear; |
| 12 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 } | 323 } |
| 324 | 324 |
| 325 /* The > arrow between breadcrumbs. */ | 325 /* The > arrow between breadcrumbs. */ |
| 326 .breadcrumb-spacer { | 326 .breadcrumb-spacer { |
| 327 -webkit-margin-start: 7px; | 327 -webkit-margin-start: 7px; |
| 328 -webkit-margin-end: 4px; | 328 -webkit-margin-end: 4px; |
| 329 color: #aaa; | 329 color: #aaa; |
| 330 font-size: 12px; | 330 font-size: 12px; |
| 331 } | 331 } |
| 332 | 332 |
| 333 button.detail-view > img, | 333 .dialog-header > div > button { |
| 334 button.thumbnail-view > img { | 334 -webkit-border-radius: 0; |
| 335 position: relative; | 335 border: none; |
| 336 top: 1px; | 336 height: 28px; |
| 337 min-width: 0; |
| 338 padding: 0; |
| 339 width: 28px; |
| 340 } |
| 341 |
| 342 /* button:hover and button[disabled]:hover rules must be override by placing |
| 343 * the following four rules after them. |
| 344 */ |
| 345 button.detail-view { |
| 346 background-image: url('../images/icon_list_view_off.png'); |
| 347 } |
| 348 |
| 349 button.thumbnail-view { |
| 350 background-image: url('../images/icon_thumb_view_off.png'); |
| 351 } |
| 352 |
| 353 button.detail-view[disabled] { |
| 354 background-image: url('../images/icon_list_view_on.png'); |
| 355 } |
| 356 |
| 357 button.thumbnail-view[disabled] { |
| 358 background-image: url('../images/icon_thumb_view_on.png'); |
| 337 } | 359 } |
| 338 | 360 |
| 339 .filelist-panel { | 361 .filelist-panel { |
| 340 display: -webkit-box; | 362 display: -webkit-box; |
| 341 -webkit-box-orient: vertical; | 363 -webkit-box-orient: vertical; |
| 342 -webkit-box-flex: 1; | 364 -webkit-box-flex: 1; |
| 343 } | 365 } |
| 344 | 366 |
| 345 .list-container { | 367 .list-container { |
| 346 display: -webkit-box; | 368 display: -webkit-box; |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 807 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
| 786 .overlay-pane { | 808 .overlay-pane { |
| 787 position: absolute; | 809 position: absolute; |
| 788 top: 0; | 810 top: 0; |
| 789 left: 0; | 811 left: 0; |
| 790 width: 100%; | 812 width: 100%; |
| 791 height: 100%; | 813 height: 100%; |
| 792 border: none; | 814 border: none; |
| 793 z-index: 100; | 815 z-index: 100; |
| 794 } | 816 } |
| OLD | NEW |