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

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

Issue 10386139: Change search field to type="search". (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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/main.html » ('j') | 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 .dialog-header div[role=button]:hover, 423 .dialog-header div[role=button]:hover,
424 .dialog-header div[role=button]:active { 424 .dialog-header div[role=button]:active {
425 border-color: #ddd; 425 border-color: #ddd;
426 } 426 }
427 427
428 .dialog-header div[role=button][disabled] { 428 .dialog-header div[role=button][disabled] {
429 background-color: #f1f1f1; 429 background-color: #f1f1f1;
430 } 430 }
431 431
432 #search-box { 432 #search-box {
433 background: url('../images/icon_search.png') no-repeat scroll 3px 3px; 433 background: url('../images/icon_search.png') no-repeat scroll 2px 1.5px;
434 border: 1px solid #BBB; 434 border: 1px solid #BBB;
435 border-radius: 2px; 435 border-radius: 2px;
436 display: -webkit-box; 436 display: -webkit-box;
437 height: 20px; 437 height: 20px;
438 margin-right: 10px; 438 margin-right: 10px;
439 padding-left: 22px; 439 padding-left: 22px;
440 } 440 }
441 441
442 /* button:hover and button[disabled]:hover rules must be override by placing 442 /* button:hover and button[disabled]:hover rules must be override by placing
443 * the following four rules after them. 443 * the following four rules after them.
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 100% { opacity: 1; } 1270 100% { opacity: 1; }
1271 } 1271 }
1272 1272
1273 :hover > .tooltip { 1273 :hover > .tooltip {
1274 -webkit-animation-duration: 800ms; 1274 -webkit-animation-duration: 800ms;
1275 -webkit-animation-iteration-count: 1; 1275 -webkit-animation-iteration-count: 1;
1276 -webkit-animation-name: tooltip-show; 1276 -webkit-animation-name: tooltip-show;
1277 -webkit-animation-timing-function: linear; 1277 -webkit-animation-timing-function: linear;
1278 opacity: 1; 1278 opacity: 1;
1279 } 1279 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698