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

Side by Side Diff: chrome/browser/resources/settings/settings_dialog.html

Issue 1960323002: MD Settings: Use shared cr_elements iconset when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CrIconsCrOS
Patch Set: rebase Created 4 years, 7 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/cr_elements/icons.html">
1 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 6
7 <dom-module id="settings-dialog"> 7 <dom-module id="settings-dialog">
8 <template> 8 <template>
9 <style include="paper-dialog-shared-styles"></style> 9 <style include="paper-dialog-shared-styles"></style>
10 <style> 10 <style>
11 .body-content { 11 .body-content {
12 display: flex; 12 display: flex;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 :host ::content .body, 93 :host ::content .body,
94 :host ::content .title { 94 :host ::content .title {
95 -webkit-padding-end: 24px; 95 -webkit-padding-end: 24px;
96 -webkit-padding-start: 24px; 96 -webkit-padding-start: 24px;
97 flex: 1; 97 flex: 1;
98 } 98 }
99 </style> 99 </style>
100 <div class="dialog-content"> 100 <div class="dialog-content">
101 <div class="top-row"> 101 <div class="top-row">
102 <content select=".title"></content> 102 <content select=".title"></content>
103 <paper-icon-button icon="clear" on-tap="cancel" id="close"> 103 <paper-icon-button icon="cr:clear" on-tap="cancel" id="close">
104 </paper-icon-button> 104 </paper-icon-button>
105 </div> 105 </div>
106 <div class="body-content"> 106 <div class="body-content">
107 <content select=".body"></content> 107 <content select=".body"></content>
108 <content select=".button-container"></content> 108 <content select=".button-container"></content>
109 </div> 109 </div>
110 </div> 110 </div>
111 <div class="footer-container"> 111 <div class="footer-container">
112 <content select=".footer"></content> 112 <content select=".footer"></content>
113 </div> 113 </div>
114 </template> 114 </template>
115 <script src="settings_dialog.js"></script> 115 <script src="settings_dialog.js"></script>
116 </dom-module> 116 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698