| Index: third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html b/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
|
| index 30e8bff84c004dace6eb8bae6e7e81e699a3bbe1..34e0758c9f7efcbdaff3f9efc320288cd1726dd7 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
|
| @@ -42,6 +42,7 @@ Custom property | Description | Default
|
| `--paper-radio-button-label-color` | Label color | `--primary-text-color`
|
| `--paper-radio-button-label-spacing` | Spacing between the label and the button | `10px`
|
| `--paper-radio-button-radio-container` | A mixin applied to the internal radio container | `{}`
|
| +`--paper-radio-button-label` | A mixin applied to the internal label | `{}`
|
|
|
| This element applies the mixin `--paper-font-common-base` but does not import `paper-styles/typography.html`.
|
| In order to apply the `Roboto` font to this element, make sure you've imported `paper-styles/typography.html`.
|
| @@ -141,6 +142,8 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
|
| margin-left: var(--paper-radio-button-label-spacing, 10px);
|
| white-space: normal;
|
| color: var(--paper-radio-button-label-color, --primary-text-color);
|
| +
|
| + @apply(--paper-radio-button-label);
|
| }
|
|
|
| :host-context([dir="rtl"]) #radioLabel {
|
| @@ -179,4 +182,4 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
|
| </template>
|
|
|
| </dom-module>
|
| -<script src="paper-radio-button-extracted.js"></script></body></html>
|
| +<script src="paper-radio-button-extracted.js"></script></body></html>
|
|
|