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

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

Issue 10388142: Show the message 'No files match "abc"' if the search results are empty. (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 1259 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 }
1280
1281 #no-search-results {
1282 bottom: 0;
1283 left: 0;
1284 padding: 10px;
1285 position: absolute;
1286 right: 0;
1287 top: 28px; /* Leave room for the file list header. */
Vladislav Kaznacheev 2012/05/15 13:38:13 28px is not needed when we are in the grid view
Oleg Eterevsky 2012/05/15 13:55:28 It looks ok in grid view.
1288 }
1289
1290 #list-container:not([no-search-results='true']) #no-search-results {
dgozman 2012/05/15 13:12:39 Drop the |='true'|. It's cleaner.
SeRya 2012/05/15 13:19:02 Use 'hidden' instead of custom attribute.
Oleg Eterevsky 2012/05/15 13:55:28 Done.
Oleg Eterevsky 2012/05/15 13:55:28 Done.
1291 display: none;
1292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698