OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
4 | 4 |
5 <dom-module name="oobe-a11y-option"> | 5 <dom-module id="oobe-a11y-option"> |
6 <template> | 6 <template> |
7 <style> | 7 <style> |
8 :root { | 8 :root { |
9 --oobe-toggle-button-size: { | 9 --oobe-toggle-button-size: { |
10 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4); | 10 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4); |
11 height: 16px; | 11 height: 16px; |
12 top: -2px; | 12 top: -2px; |
13 width: 16px; | 13 width: 16px; |
14 }; | 14 }; |
15 --oobe-toggle-bar-size: { | 15 --oobe-toggle-bar-size: { |
(...skipping 27 matching lines...) Expand all Loading... |
43 <div class="display-value" hidden="[[checked]]"> | 43 <div class="display-value" hidden="[[checked]]"> |
44 <content select=".unchecked-value"></content> | 44 <content select=".unchecked-value"></content> |
45 </div> | 45 </div> |
46 </div> | 46 </div> |
47 <paper-toggle-button id="button" checked="{{checked}}" | 47 <paper-toggle-button id="button" checked="{{checked}}" |
48 aria-label$="[[labelForAria]]"> | 48 aria-label$="[[labelForAria]]"> |
49 </paper-toggle-button> | 49 </paper-toggle-button> |
50 </div> | 50 </div> |
51 </template> | 51 </template> |
52 </dom-module> | 52 </dom-module> |
OLD | NEW |