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 html.col-resize * { | 5 html.col-resize * { |
6 cursor: col-resize !important; | 6 cursor: col-resize !important; |
7 } | 7 } |
8 | 8 |
9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
10 body { | 10 body { |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 #search-box { | 439 #search-box { |
440 background: url('../images/icon_search.png') no-repeat scroll 2px 1.5px; | 440 background: url('../images/icon_search.png') no-repeat scroll 2px 1.5px; |
441 border: 1px solid #BBB; | 441 border: 1px solid #BBB; |
442 border-radius: 2px; | 442 border-radius: 2px; |
443 display: -webkit-box; | 443 display: -webkit-box; |
444 height: 20px; | 444 height: 20px; |
445 margin-right: 10px; | 445 margin-right: 10px; |
446 padding-left: 22px; | 446 padding-left: 22px; |
447 } | 447 } |
448 | 448 |
449 /* button:hover and button[disabled]:hover rules must be override by placing | 449 /* When detail-view is not disabled (thus thumbnail view is disabled), push |
450 * the following four rules after them. | 450 it up a little, to make it's right glowing border visible while focused.*/ |
451 */ | 451 button#detail-view:not([disabled]) { |
452 div.detail-view { | 452 z-index: 2; |
453 background-image: url('../images/icon_list_view.png'); | |
454 } | 453 } |
455 | 454 |
456 div.thumbnail-view { | |
457 background-image: url('../images/icon_thumb_view.png'); | |
458 margin-left: -1px; | |
459 } | |
460 | |
461 | |
462 button.settings { | 455 button.settings { |
463 display: none; | 456 display: none; |
464 /* Temporary solution not to uglify settings button */ | 457 /* Temporary solution not to uglify settings button */ |
465 height: 30px; | 458 height: 30px; |
466 margin-left: 8px; | 459 margin-left: 8px; |
467 width: 57px; | 460 width: 57px; |
468 } | 461 } |
469 | 462 |
470 [gdata] button.settings { | 463 [gdata] button.settings { |
471 background-image: url('../images/settings_button.png'); | 464 background-image: url('../images/settings_button.png'); |
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1311 left: 0; | 1304 left: 0; |
1312 padding: 10px; | 1305 padding: 10px; |
1313 position: absolute; | 1306 position: absolute; |
1314 right: 0; | 1307 right: 0; |
1315 top: 28px; /* Leave room for the file list header. */ | 1308 top: 28px; /* Leave room for the file list header. */ |
1316 } | 1309 } |
1317 | 1310 |
1318 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] { | 1311 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] { |
1319 display: block; | 1312 display: block; |
1320 } | 1313 } |
OLD | NEW |