OLD | NEW |
1 /** | 1 /** |
2 @license | 2 @license |
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
9 */ | 9 */ |
10 | 10 |
11 :host { | 11 :host { |
12 display: inline-block; | 12 display: inline-block; |
13 width: 200px; | 13 width: 200px; |
14 cursor: default; | 14 cursor: default; |
15 -webkit-user-select: none; | 15 -webkit-user-select: none; |
16 -moz-user-select: none; | 16 -moz-user-select: none; |
17 -ms-user-select: none; | 17 -ms-user-select: none; |
18 user-select: none; | 18 user-select: none; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 76 } |
77 | 77 |
78 #sliderBar { | 78 #sliderBar { |
79 position: absolute; | 79 position: absolute; |
80 top: 15px; | 80 top: 15px; |
81 left: 0; | 81 left: 0; |
82 height: 2px; | 82 height: 2px; |
83 width: 100%; | 83 width: 100%; |
84 padding: 8px 0; | 84 padding: 8px 0; |
85 margin: -8px 0; | 85 margin: -8px 0; |
| 86 background-color: var(--paper-slider-bar-color, transparent); |
86 } | 87 } |
87 | 88 |
88 .ring #sliderBar { | 89 .ring #sliderBar { |
89 left: -4px; | 90 left: -4px; |
90 width: calc(100% + 4px); | 91 width: calc(100% + 4px); |
91 } | 92 } |
92 | 93 |
93 .ring.expand:not(.pin) #sliderBar { | 94 .ring.expand:not(.pin) #sliderBar { |
94 left: -14px; | 95 left: -14px; |
95 width: calc(100% + 14px); | 96 width: calc(100% + 14px); |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 background-color: var(--paper-slider-disabled-knob-color, --google-grey-500); | 248 background-color: var(--paper-slider-disabled-knob-color, --google-grey-500); |
248 } | 249 } |
249 | 250 |
250 .disabled.ring > #sliderKnob > #sliderKnobInner { | 251 .disabled.ring > #sliderKnob > #sliderKnobInner { |
251 background-color: transparent; | 252 background-color: transparent; |
252 } | 253 } |
253 | 254 |
254 paper-ripple { | 255 paper-ripple { |
255 color: var(--paper-slider-knob-color, --google-blue-700); | 256 color: var(--paper-slider-knob-color, --google-blue-700); |
256 } | 257 } |
OLD | NEW |