| Index: third_party/polymer/v1_0/components-chromium/paper-toggle-button/paper-toggle-button.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-toggle-button/paper-toggle-button.html b/third_party/polymer/v1_0/components-chromium/paper-toggle-button/paper-toggle-button.html
|
| index 61a7bf0bfac7e4676dac5dc69a1e91e3f6229670..e42046507b37efc790b634accf932e744d0be594 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-toggle-button/paper-toggle-button.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-toggle-button/paper-toggle-button.html
|
| @@ -39,8 +39,10 @@ Custom property | Description | Default
|
| `--paper-toggle-button-invalid-ink-color` | Selected/focus ripple color when the input is invalid | `--error-color`
|
| `--paper-toggle-button-unchecked-bar` | Mixin applied to the slider when the input is not checked | `{}`
|
| `--paper-toggle-button-unchecked-button` | Mixin applied to the slider button when the input is not checked | `{}`
|
| +`--paper-toggle-button-unchecked-ink` | Mixin applied to the ripple when the input is not checked | `{}`
|
| `--paper-toggle-button-checked-bar` | Mixin applied to the slider when the input is checked | `{}`
|
| `--paper-toggle-button-checked-button` | Mixin applied to the slider button when the input is checked | `{}`
|
| +`--paper-toggle-button-checked-ink` | Mixin applied to the ripple when the input is checked | `{}`
|
| `--paper-toggle-button-label-color` | Label color | `--primary-text-color`
|
| `--paper-toggle-button-label-spacing` | Spacing between the label and the button | `8px`
|
|
|
| @@ -145,10 +147,14 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
|
| opacity: 0.5;
|
| pointer-events: none;
|
| color: var(--paper-toggle-button-unchecked-ink-color, --primary-text-color);
|
| +
|
| + @apply(--paper-toggle-button-unchecked-ink);
|
| }
|
|
|
| :host([checked]) .toggle-ink {
|
| color: var(--paper-toggle-button-checked-ink-color, --primary-color);
|
| +
|
| + @apply(--paper-toggle-button-checked-ink);
|
| }
|
|
|
| .toggle-container {
|
|
|