Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10409093: [FileBrowser] Fixed tab navigation for detail-thumbnail-settings buttons. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
dgozman 2012/05/23 14:44:41 space before (
Dmitry Zvorygin 2012/05/23 14:51:58 Done.
450 * the following four rules after them. 450 it up a little, to make it's right glowing border visible while focused.
451 */ 451 */
452 div.detail-view { 452 button#detail-view:not([disabled]) {
453 background-image: url('../images/icon_list_view.png'); 453 z-index: 2;
454 } 454 }
455 455
456 div.thumbnail-view {
457 background-image: url('../images/icon_thumb_view.png');
458 margin-left: -1px;
459 }
460
461
462 button.settings { 456 button.settings {
463 display: none; 457 display: none;
464 /* Temporary solution not to uglify settings button */ 458 /* Temporary solution not to uglify settings button */
465 height: 30px; 459 height: 30px;
466 margin-left: 8px; 460 margin-left: 8px;
467 width: 57px; 461 width: 57px;
468 } 462 }
469 463
470 [gdata] button.settings { 464 [gdata] button.settings {
471 background-image: url('../images/settings_button.png'); 465 background-image: url('../images/settings_button.png');
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 left: 0; 1305 left: 0;
1312 padding: 10px; 1306 padding: 10px;
1313 position: absolute; 1307 position: absolute;
1314 right: 0; 1308 right: 0;
1315 top: 28px; /* Leave room for the file list header. */ 1309 top: 28px; /* Leave room for the file list header. */
1316 } 1310 }
1317 1311
1318 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] { 1312 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] {
1319 display: block; 1313 display: block;
1320 } 1314 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698