Blame view

bower_components/paper-radio-button/README.md 906 Bytes
c5169e0e   Renato De Donato   a new hope
1
  # paper-radio-button
73bcce88   luigser   COMPONENTS
2
3
4
5
6
7
8
  
  `paper-radio-button` is a button that can be either checked or unchecked.
  User can tap the radio button to check or uncheck it.
  
  Use a `<paper-radio-group>` to group a set of radio buttons.  When radio buttons
  are inside a radio group, exactly one radio button in the group can be checked
  at any time.
73bcce88   luigser   COMPONENTS
9
10
  Example:
  
c5169e0e   Renato De Donato   a new hope
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  ```html
  <paper-radio-button></paper-radio-button>
  <paper-radio-button>Item label</paper-radio-button>
  ```
  Styling a radio button:
  
  ```html
  <style is="custom-style">
    :root {
      /* Unchecked state colors. */
      --paper-radio-button-unchecked-color: #5a5a5a;
      --paper-radio-button-unchecked-background-color: #fff;
      --paper-radio-button-unchecked-ink-color: #5a5a5a;
  
      /* Checked state colors. */
      --paper-radio-button-checked-color: #009688;
      --paper-radio-button-checked-ink-color: #0f9d58;
  
      --paper-radio-button-label-color: black;
    }
  </style>
  ```