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

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

Issue 10834029: Make the search box smaller when inactive and grow when focused. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 .dialog-header div[role=button]:hover, 444 .dialog-header div[role=button]:hover,
445 .dialog-header div[role=button]:active { 445 .dialog-header div[role=button]:active {
446 border-color: #ddd; 446 border-color: #ddd;
447 } 447 }
448 448
449 .dialog-header div[role=button][disabled] { 449 .dialog-header div[role=button][disabled] {
450 background-color: #f1f1f1; 450 background-color: #f1f1f1;
451 } 451 }
452 452
453 #search-box { 453 #search-box {
454 -webkit-transition: width 600ms;
454 background: -webkit-image-set( 455 background: -webkit-image-set(
455 url('../images/files/ui/icon_search.png') 1x, 456 url('../images/files/ui/icon_search.png') 1x,
456 url('../images/files/ui/2x/icon_search.png') 2x); 457 url('../images/files/ui/2x/icon_search.png') 2x);
457 background-position: 4px 3.5px; 458 background-position: 4px 3.5px;
458 background-repeat: no-repeat; 459 background-repeat: no-repeat;
459 display: -webkit-box; 460 display: -webkit-box;
460 height: 25px; 461 height: 25px;
461 margin-right: 10px; 462 margin-right: 10px;
462 padding-left: 22px; 463 padding-left: 22px;
464 width: 150px;
465 }
466
467 #search-box:focus {
468 width: 240px;
463 } 469 }
464 470
465 #search-box, 471 #search-box,
466 #filename-input-box input { 472 #filename-input-box input {
467 border: 1px solid #BBB; 473 border: 1px solid #BBB;
468 border-radius: 2px; 474 border-radius: 2px;
469 } 475 }
470 476
471 button#detail-view { 477 button#detail-view {
472 background-image: -webkit-image-set( 478 background-image: -webkit-image-set(
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 width: 50%; 1407 width: 50%;
1402 } 1408 }
1403 1409
1404 #list-container .table-header-inner { 1410 #list-container .table-header-inner {
1405 height: 100%; 1411 height: 100%;
1406 } 1412 }
1407 1413
1408 #list-container .table-header-cell:hover { 1414 #list-container .table-header-cell:hover {
1409 background-color: #f2f2f2; 1415 background-color: #f2f2f2;
1410 } 1416 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698