| Index: third_party/polymer/v1_0/components-chromium/paper-radio-button/README.md
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-radio-button/README.md b/third_party/polymer/v1_0/components-chromium/paper-radio-button/README.md
|
| index e3c1a986134201a33dd2678ab7880cd475dea869..d141450c88d888cab3cdea082b72fd7da562f1cd 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-radio-button/README.md
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-radio-button/README.md
|
| @@ -7,16 +7,18 @@ paper-radio-button.html
|
| Edit those files, and our readme bot will duplicate them over here!
|
| Edit this file, and the bot will squash your changes :)
|
|
|
| +The bot does some handling of markdown. Please file a bug if it does the wrong
|
| +thing! https://github.com/PolymerLabs/tedium/issues
|
| +
|
| -->
|
|
|
| -[](https://travis-ci.org/PolymerElements/paper-radio-button)
|
| +[](https://travis-ci.org/PolymerElements/paper-radio-button)
|
|
|
| -_[Demo and API Docs](https://elements.polymer-project.org/elements/paper-radio-button)_
|
| +_[Demo and API docs](https://elements.polymer-project.org/elements/paper-radio-button)_
|
|
|
|
|
| ##<paper-radio-button>
|
|
|
| -
|
| Material design: [Radio button](https://www.google.com/design/spec/components/selection-controls.html#selection-controls-radio-button)
|
|
|
| `paper-radio-button` is a button that can be either checked or unchecked.
|
| @@ -28,21 +30,26 @@ at any time.
|
|
|
| Example:
|
|
|
| - <paper-radio-button></paper-radio-button>
|
| - <paper-radio-button>Item label</paper-radio-button>
|
| +```html
|
| +<paper-radio-button></paper-radio-button>
|
| +<paper-radio-button>Item label</paper-radio-button>
|
| +```
|
|
|
| ### Styling
|
|
|
| The following custom properties and mixins are available for styling:
|
|
|
| -Custom property | Description | Default
|
| -----------------|-------------|----------
|
| -`--paper-radio-button-unchecked-background-color` | Radio button background color when the input is not checked | `transparent`
|
| -`--paper-radio-button-unchecked-color` | Radio button color when the input is not checked | `--primary-text-color`
|
| -`--paper-radio-button-unchecked-ink-color` | Selected/focus ripple color when the input is not checked | `--primary-text-color`
|
| -`--paper-radio-button-checked-color` | Radio button color when the input is checked | `--default-primary-color`
|
| -`--paper-radio-button-checked-ink-color` | Selected/focus ripple color when the input is checked | `--default-primary-color`
|
| -`--paper-radio-button-label-color` | Label color | `--primary-text-color`
|
| -`--paper-radio-button-label-spacing` | Spacing between the label and the button | `10px`
|
| +| Custom property | Description | Default |
|
| +| --- | --- | --- |
|
| +| `--paper-radio-button-unchecked-background-color` | Radio button background color when the input is not checked | `transparent` |
|
| +| `--paper-radio-button-unchecked-color` | Radio button color when the input is not checked | `--primary-text-color` |
|
| +| `--paper-radio-button-unchecked-ink-color` | Selected/focus ripple color when the input is not checked | `--primary-text-color` |
|
| +| `--paper-radio-button-checked-color` | Radio button color when the input is checked | `--primary-color` |
|
| +| `--paper-radio-button-checked-ink-color` | Selected/focus ripple color when the input is checked | `--primary-color` |
|
| +| `--paper-radio-button-label-color` | Label color | `--primary-text-color` |
|
| +| `--paper-radio-button-label-spacing` | Spacing between the label and the button | `10px` |
|
| +
|
| +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`.
|
|
|
|
|
|
|