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

Side by Side Diff: chrome/browser/resources/md_user_manager/supervised_user_learn_more.html

Issue 2053723002: MD User Manager: Overhaul Urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-dialogs
Patch Set: Changed Urls for html resources to root-relative Urls Created 4 years, 6 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://md-user-manager/icons.html"> 1 <link rel="import" href="/icons.html">
2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 2 <link rel="import" href="/shared_styles.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 6
7 <dom-module id="supervised-user-learn-more"> 7 <dom-module id="supervised-user-learn-more">
8 <template> 8 <template>
9 <style include="shared-styles"> 9 <style include="shared-styles iron-flex iron-flex-alignment">
10 :host { 10 :host {
11 align-self: center; 11 align-self: center;
12 } 12 }
13 13
14 #container { 14 #container {
15 color: var(--primary-text-color); 15 color: var(--primary-text-color);
16 line-height: 20px; 16 line-height: 20px;
17 width: var(--page-width); 17 width: var(--page-width);
18 } 18 }
19 19
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 <div class="content-area" 54 <div class="content-area"
55 i18n-values=".innerHTML:supervisedUserLearnMoreText"> 55 i18n-values=".innerHTML:supervisedUserLearnMoreText">
56 </div> 56 </div>
57 <div id="actions"> 57 <div id="actions">
58 <paper-button id="done" class="action primary" on-tap="onDoneTap_"> 58 <paper-button id="done" class="action primary" on-tap="onDoneTap_">
59 $i18n{supervisedUserLearnMoreDone} 59 $i18n{supervisedUserLearnMoreDone}
60 </paper-button> 60 </paper-button>
61 </div> 61 </div>
62 </div> 62 </div>
63 </template> 63 </template>
64 <script src="chrome://md-user-manager/supervised_user_learn_more.js"></script> 64 <script src="supervised_user_learn_more.js"></script>
65 </dom-module> 65 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698