Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_a11y_option.html

Issue 2254733004: ChromeOS: Update styles of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing files. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 name="oobe-a11y-option">
6 <template> 6 <template>
7 <div class="layout horizontal"> 7 <link rel="stylesheet" href="oobe_a11y_option.css">
8 <div id="labelContainer" class="flex layout vertical"> 8 <div id="element-box" class="layout horizontal">
michaelpg 2016/08/18 19:40:58 elementBox for consistency with other IDs
Alexander Alekseev 2016/08/19 06:00:05 Done.
9 <div class="flex layout vertical center-justified">
9 <div id="titleContainer"> 10 <div id="titleContainer">
10 <content select=".title"></content> 11 <content select=".title"></content>
11 </div> 12 </div>
12 <div class="display-value" hidden="[[!checked]]"> 13 <div class="display-value" hidden="[[!checked]]">
13 <content select=".checked-value"></content> 14 <content select=".checked-value"></content>
14 </div> 15 </div>
15 <div class="display-value" hidden="[[checked]]"> 16 <div class="display-value" hidden="[[checked]]">
16 <content select=".unchecked-value"></content> 17 <content select=".unchecked-value"></content>
17 </div> 18 </div>
18 </div> 19 </div>
19 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> 20 <paper-toggle-button checked="{{checked}}"></paper-toggle-button>
20 </div> 21 </div>
21 </template> 22 </template>
22 </dom-module> 23 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698