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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 1215533003: Add a refresh button for providers which do not support watchers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 5 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
OLDNEW
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2014 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 /* Special attribute used in HTML to hide elements. */ 5 /* Special attribute used in HTML to hide elements. */
6 body[type='folder'] [invisibleif~='folder'], 6 body[type='folder'] [invisibleif~='folder'],
7 body[type='upload-folder'] [invisibleif~='upload-folder'], 7 body[type='upload-folder'] [invisibleif~='upload-folder'],
8 body[type='saveas-file'] [invisibleif~='saveas-file'], 8 body[type='saveas-file'] [invisibleif~='saveas-file'],
9 body[type='open-file'] [invisibleif~='open-file'], 9 body[type='open-file'] [invisibleif~='open-file'],
10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'],
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 url(../images/files/ui/delete.png) 1x, 385 url(../images/files/ui/delete.png) 1x,
386 url(../images/files/ui/2x/delete.png) 2x); 386 url(../images/files/ui/2x/delete.png) 2x);
387 } 387 }
388 388
389 #view-button > .icon { 389 #view-button > .icon {
390 background-image: -webkit-image-set( 390 background-image: -webkit-image-set(
391 url(../images/files/ui/view_list_white.png) 1x, 391 url(../images/files/ui/view_list_white.png) 1x,
392 url(../images/files/ui/2x/view_list_white.png) 2x); 392 url(../images/files/ui/2x/view_list_white.png) 2x);
393 } 393 }
394 394
395 #refresh-button > .icon {
396 background-image: -webkit-image-set(
397 url(../images/files/ui/refresh_white.png) 1x,
398 url(../images/files/ui/2x/refresh_white.png) 2x);
399 }
400
395 body.check-select #view-button { 401 body.check-select #view-button {
396 display: none; 402 display: none;
397 } 403 }
398 404
399 #view-button.thumbnail > .icon { 405 #view-button.thumbnail > .icon {
400 background-image: -webkit-image-set( 406 background-image: -webkit-image-set(
401 url(../images/files/ui/view_thumbnail_white.png) 1x, 407 url(../images/files/ui/view_thumbnail_white.png) 1x,
402 url(../images/files/ui/2x/view_thumbnail_white.png) 2x); 408 url(../images/files/ui/2x/view_thumbnail_white.png) 2x);
403 } 409 }
404 410
(...skipping 1853 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 2264
2259 #tooltip-label { 2265 #tooltip-label {
2260 background-color: #323232; 2266 background-color: #323232;
2261 border-radius: 2px; 2267 border-radius: 2px;
2262 color: white; 2268 color: white;
2263 font-size: 12px; 2269 font-size: 12px;
2264 line-height: 28px; 2270 line-height: 28px;
2265 padding: 0 14px; 2271 padding: 0 14px;
2266 white-space: nowrap; 2272 white-space: nowrap;
2267 } 2273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698