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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.html

Issue 2623673003: MD WebUI: change all <dialog is="cr-dialog"> to 512px width (Closed)
Patch Set: Created 3 years, 11 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/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.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-dropdown/iron-drop down.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h tml">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
10 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> 10 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html">
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 <paper-item on-tap="onSelect_">[[item]]</paper-item> 71 <paper-item on-tap="onSelect_">[[item]]</paper-item>
72 </template> 72 </template>
73 </div> 73 </div>
74 </iron-dropdown> 74 </iron-dropdown>
75 </template> 75 </template>
76 </dom-module> 76 </dom-module>
77 77
78 <dom-module id="add-printer-dialog"> 78 <dom-module id="add-printer-dialog">
79 <template> 79 <template>
80 <style include="settings-shared"> 80 <style include="settings-shared">
81 #dialog {
82 width: 525px;
83 }
84
85 #dialog .body { 81 #dialog .body {
86 -webkit-padding-end: 0; 82 -webkit-padding-end: 0;
87 -webkit-padding-start: 0; 83 -webkit-padding-start: 0;
88 height: 350px; 84 height: 350px;
89 } 85 }
90 86
91 #dialog .button-container { 87 #dialog .button-container {
92 border-top: 1px solid rgba(0, 0, 0, 0.14); 88 border-top: 1px solid rgba(0, 0, 0, 0.14);
93 margin-top: 0; 89 margin-top: 0;
94 padding-top: 10px; 90 padding-top: 10px;
(...skipping 12 matching lines...) Expand all
107 <div class="body"> 103 <div class="body">
108 <content select=".dialog-body"></content> 104 <content select=".dialog-body"></content>
109 </div> 105 </div>
110 <div class="button-container"> 106 <div class="button-container">
111 <content select=".dialog-buttons"></content> 107 <content select=".dialog-buttons"></content>
112 </div> 108 </div>
113 </dialog> 109 </dialog>
114 </template> 110 </template>
115 <script src="cups_add_printer_dialog_util.js"></script> 111 <script src="cups_add_printer_dialog_util.js"></script>
116 </dom-module> 112 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698