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

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

Issue 2891423003: CUPS: Fix the incorrect width Protocol drop down menu. (Closed)
Patch Set: Remove the left padding. Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/html/md_select_css.html"> 3 <link rel="import" href="chrome://resources/html/md_select_css.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
8 <link rel="import" href="../i18n_setup.html"> 8 <link rel="import" href="../i18n_setup.html">
9 <link rel="import" href="cups_add_printer_dialog_util.html"> 9 <link rel="import" href="cups_add_printer_dialog_util.html">
10 <link rel="import" href="cups_printers_browser_proxy.html"> 10 <link rel="import" href="cups_printers_browser_proxy.html">
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 97 }
98 98
99 .settings-box.two-line { 99 .settings-box.two-line {
100 min-height: 72px; 100 min-height: 72px;
101 } 101 }
102 102
103 .settings-box .start .label { 103 .settings-box .start .label {
104 color: var(--google-grey-700); 104 color: var(--google-grey-700);
105 } 105 }
106 106
107 .md-select, 107 .md-select {
108 width: calc(270px + var(--md-side-padding));
109 }
110
111 .md-select-underline {
112 -webkit-margin-start: 0;
113 }
114
108 paper-input { 115 paper-input {
109 --paper-input-container-color: var(--paper-grey-600); 116 --paper-input-container-color: var(--paper-grey-600);
110 --paper-input-container-input: { 117 --paper-input-container-input: {
111 font-size: inherit; 118 font-size: inherit;
112 }; 119 };
113 width: 270px; 120 width: 270px;
114 } 121 }
115 122
116 #printerNameInput { 123 #printerNameInput {
117 width: 450px; 124 width: 450px;
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 <!-- Manufacturer and Model Dialog --> 395 <!-- Manufacturer and Model Dialog -->
389 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> 396 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp>
390 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" 397 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}"
391 previous-dialog="[[previousDialog]]" setup-failed="[[setupFailed]]"> 398 previous-dialog="[[previousDialog]]" setup-failed="[[setupFailed]]">
392 </add-printer-manufacturer-model-dialog> 399 </add-printer-manufacturer-model-dialog>
393 </template> 400 </template>
394 401
395 </template> 402 </template>
396 <script src="cups_add_printer_dialog.js"></script> 403 <script src="cups_add_printer_dialog.js"></script>
397 </dom-module> 404 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698