MacViews: Get c/b/ui/views/tabs to build on Mac
[chromium-blink-merge.git] / third_party / polymer / components-chromium / paper-toggle-button / paper-toggle-button.html
blob6c7cf1d9e7a0e99cf964abe8b3057ade1b49337d
1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
8 -->
10 <!--
11 `paper-toggle-button` provides a ON/OFF switch that user can toggle the state
12 by tapping or by dragging the swtich.
14 Example:
16 <paper-toggle-button></paper-toggle-button>
18 Styling toggle button:
20 To change the ink color for checked state:
22 paper-toggle-button::shadow paper-radio-button::shadow #ink[checked] {
23 color: #4285f4;
26 To change the radio checked color:
28 paper-toggle-button::shadow paper-radio-button::shadow #onRadio {
29 background-color: #4285f4;
32 To change the bar color for checked state:
34 paper-toggle-button::shadow #toggleBar[checked] {
35 background-color: #4285f4;
38 To change the ink color for unchecked state:
40 paper-toggle-button::shadow paper-radio-button::shadow #ink {
41 color: #b5b5b5;
44 To change the radio unchecked color:
46 paper-toggle-button::shadow paper-radio-button::shadow #offRadio {
47 border-color: #b5b5b5;
50 To change the bar color for unchecked state:
52 paper-toggle-button::shadow #toggleBar {
53 background-color: red;
56 @group Paper Elements
57 @element paper-toggle-button
58 @homepage github.io
59 -->
61 <link rel="import" href="../paper-radio-button/paper-radio-button.html">
63 <polymer-element name="paper-toggle-button" attributes="checked" role="button" aria-pressed="false" tabindex="0" assetpath="">
64 <template>
66 <link rel="stylesheet" href="paper-toggle-button.css">
68 <div id="toggleContainer">
70 <div id="toggleBar" checked?="{{checked}}"></div>
72 <paper-radio-button id="toggleRadio" toggles="" checked="{{checked}}" on-trackstart="{{trackStart}}" on-trackx="{{trackx}}" on-trackend="{{trackEnd}}"></paper-radio-button>
74 </div>
76 </template>
78 </polymer-element>
79 <script src="paper-toggle-button-extracted.js"></script>