Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
|
mtomasz
2015/01/14 00:34:34
(c) 2012 -> 2015
Ben Kwa
2015/01/14 16:19:33
Done.
| |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 /* Small icons for file statuses, used in lists and menus. */ | |
| 6 [file-status-icon] { | |
| 7 background-image: none; | |
| 8 background-position: center; | |
| 9 background-repeat: no-repeat; | |
| 10 background-size: 16px 16px; | |
| 11 } | |
| 12 | |
| 13 [file-status-icon='copied'] { | |
| 14 background-color: gray; | |
| 15 background-image: -webkit-image-set( | |
| 16 url(../images/files/ui/copied_badge.png) 1x, | |
| 17 url(../images/files/ui/2x/copied_badge.png) 2x); | |
| 18 } | |
| 19 | |
| 20 tree:focus .tree-item[selected] > .tree-row > [file-status-icon='copied'], | |
| 21 list:focus [selected] [file-status-icon='copied'], | |
| 22 list.autocomplete-suggestions [selected] [file-status-icon='copied'] { | |
| 23 background-color: transparent; | |
| 24 background-image: -webkit-image-set( | |
| 25 url(../images/files/ui/copied_badge.png) 1x, | |
| 26 url(../images/files/ui/2x/copied_badge.png) 2x); | |
| 27 } | |
| 28 | |
| 29 [file-status-icon='imported'] { | |
| 30 background-color: gray; | |
| 31 background-image: -webkit-image-set( | |
| 32 url(../images/files/ui/drive_badge.png) 1x, | |
| 33 url(../images/files/ui/2x/drive_badge.png) 2x); | |
| 34 } | |
| 35 | |
| 36 tree:focus .tree-item[selected] > .tree-row > [file-status-icon='imported'], | |
| 37 list:focus [selected] [file-status-icon='imported'], | |
| 38 list.autocomplete-suggestions [selected] [file-status-icon='imported'] { | |
| 39 background-color: transparent; | |
| 40 background-image: -webkit-image-set( | |
| 41 url(../images/files/ui/drive_badge.png) 1x, | |
| 42 url(../images/files/ui/2x/drive_badge.png) 2x); | |
| 43 } | |
| OLD | NEW |