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

Side by Side Diff: chrome/browser/resources/md_user_manager/user_manager_dialog.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/shared_styles.html"> 1 <link rel="import" href="/shared_styles.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.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/classe s/iron-flex-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-dialog-behavior/p aper-dialog-behavior.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
8 8
9 <dom-module id="user-manager-dialog"> 9 <dom-module id="user-manager-dialog">
10 <template> 10 <template>
11 <style include="shared-styles paper-dialog-shared-styles"> 11 <style include="shared-styles paper-dialog-shared-styles iron-flex iron-flex -alignment">
12 :host { 12 :host {
13 --paper-dialog: { 13 --paper-dialog: {
14 border-radius: 2px; 14 border-radius: 2px;
15 color: var(--primary-text-color); 15 color: var(--primary-text-color);
16 font-size: inherit; 16 font-size: inherit;
17 line-height: initial; 17 line-height: initial;
18 width: 512px; 18 width: 512px;
19 }; 19 };
20 } 20 }
21 21
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 </style> 66 </style>
67 <div id="title-bar" class="horizontal justified layout"> 67 <div id="title-bar" class="horizontal justified layout">
68 <content select=".title"></content> 68 <content select=".title"></content>
69 <paper-icon-button icon="cr:close" id="close" dialog-dismiss> 69 <paper-icon-button icon="cr:close" id="close" dialog-dismiss>
70 </paper-icon-button> 70 </paper-icon-button>
71 </div> 71 </div>
72 <content select=".body"></content> 72 <content select=".body"></content>
73 <content select=".footer"></content> 73 <content select=".footer"></content>
74 </template> 74 </template>
75 <script src="chrome://md-user-manager/user_manager_dialog.js"></script> 75 <script src="user_manager_dialog.js"></script>
76 </dom-module> 76 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698