OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright 2016 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 :host { | |
6 border-radius: 2px; | |
7 cursor: pointer; | |
8 display: inline-block; | |
9 height: 32px; | |
10 outline: none; | |
11 position: relative; | |
12 width: 32px; | |
13 } | |
14 | |
15 .repeat-all, .repeat-none { | |
16 background-image: -webkit-image-set( | |
17 url(../assets/100/player_button_repeat.png) 1x, | |
18 url(../assets/200/player_button_repeat.png) 2x); | |
19 } | |
20 | |
21 .repeat-one { | |
22 background-image: -webkit-image-set( | |
23 url(../assets/100/player_button_repeat_one.png) 1x, | |
24 url(../assets/200/player_button_repeat_one.png) 2x); | |
25 } | |
26 | |
27 files-toggle-ripple { | |
28 background-position: center; | |
29 background-repeat: no-repeat; | |
30 height: 28px; | |
31 left: 2px; | |
32 pointer-events: none; | |
33 position: absolute; | |
34 top: 2px; | |
35 width: 28px; | |
36 } | |
37 | |
38 files-toggle-ripple::shadow .ripple { | |
fukino
2016/09/09 05:31:45
Please remove this line.
It was already removed in
harukam
2016/09/09 11:53:45
Thanks.
| |
39 opacity: 0.1; | |
40 @apply(--files-icon-button-activated-theme); | |
41 } | |
OLD | NEW |