| OLD | NEW |
| 1 paper-slider | 1 paper-slider |
| 2 ============ | 2 ============ |
| 3 | 3 |
| 4 `paper-slider` allows user to select a value from a range of values by | 4 `paper-slider` allows user to select a value from a range of values by |
| 5 moving the slider thumb. The interactive nature of the slider makes it a | 5 moving the slider thumb. The interactive nature of the slider makes it a |
| 6 great choice for settings that reflect intensity levels, such as volume, | 6 great choice for settings that reflect intensity levels, such as volume, |
| 7 brightness, or color saturation. | 7 brightness, or color saturation. |
| 8 | 8 |
| 9 Example: | 9 Example: |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 --paper-slider-disabled-active-color: #ccc; | 60 --paper-slider-disabled-active-color: #ccc; |
| 61 } | 61 } |
| 62 ``` | 62 ``` |
| 63 | 63 |
| 64 To change the slider disabled secondary progress bar color: | 64 To change the slider disabled secondary progress bar color: |
| 65 ```css | 65 ```css |
| 66 paper-slider { | 66 paper-slider { |
| 67 --paper-slider-disabled-secondary-color: #ccc; | 67 --paper-slider-disabled-secondary-color: #ccc; |
| 68 } | 68 } |
| 69 ``` | 69 ``` |
| OLD | NEW |