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

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

Issue 1056433003: Add button to add new FSP services to Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 8 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) 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 /* Small icons for file types, used in lists and menus. */ 5 /* Small icons for file types, used in lists and menus. */
6 [file-type-icon] { 6 [file-type-icon] {
7 background-image: -webkit-image-set( 7 background-image: -webkit-image-set(
8 url(../images/filetype/filetype_generic.png) 1x, 8 url(../images/filetype/filetype_generic.png) 1x,
9 url(../images/filetype/2x/filetype_generic.png) 2x); 9 url(../images/filetype/2x/filetype_generic.png) 2x);
10 background-position: center; 10 background-position: center;
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 .tree-row[selected] [volume-type-icon='removable'][volume-subtype='unknown'] { 321 .tree-row[selected] [volume-type-icon='removable'][volume-subtype='unknown'] {
322 background-image: -webkit-image-set( 322 background-image: -webkit-image-set(
323 url(../images/volumes/hard_drive_active.png) 1x, 323 url(../images/volumes/hard_drive_active.png) 1x,
324 url(../images/volumes/2x/hard_drive_active.png) 2x); 324 url(../images/volumes/2x/hard_drive_active.png) 2x);
325 } 325 }
326 326
327 .tree-row:not([selected]) [volume-type-icon='provided'] { 327 .tree-row:not([selected]) [volume-type-icon='provided'] {
328 /* Apply the rgb(90, 90, 90) mask. */ 328 /* Apply the rgb(90, 90, 90) mask. */
329 -webkit-filter: contrast(0) brightness(0.7143); 329 -webkit-filter: contrast(0) brightness(0.7143);
330 } 330 }
331
332 .tree-row [command-icon='add-new-services'] {
333 background-image: -webkit-image-set(
334 url(../images/volumes/add.png) 1x,
335 url(../images/volumes/2x/add.png) 2x);
336 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698