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

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

Issue 2570873003: [CUPS] Fix the width of the printer protocol dropdown menu. (Closed)
Patch Set: Created 4 years 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/md_select_css.html"> 1 <link rel="import" href="chrome://resources/html/md_select_css.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <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-input/paper-input .html"> 5 <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-spinner/paper-spi nner.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
7 <link rel="import" href="/i18n_setup.html"> 7 <link rel="import" href="/i18n_setup.html">
8 <link rel="import" href="/printing_page/cups_add_printer_dialog_util.html"> 8 <link rel="import" href="/printing_page/cups_add_printer_dialog_util.html">
9 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> 9 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html">
10 <link rel="import" href="/settings_shared_css.html"> 10 <link rel="import" href="/settings_shared_css.html">
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 } 88 }
89 89
90 .settings-box.two-line { 90 .settings-box.two-line {
91 min-height: 72px; 91 min-height: 72px;
92 } 92 }
93 93
94 .settings-box .start .label { 94 .settings-box .start .label {
95 color: var(--google-grey-700); 95 color: var(--google-grey-700);
96 } 96 }
97 97
98 paper-dropdown-menu-light, 98 .md-select,
99 paper-input { 99 paper-input {
100 --paper-input-container-color: var(--google-grey-500); 100 --paper-input-container-color: var(--google-grey-500);
101 --paper-input-container-input: { 101 --paper-input-container-input: {
102 font-size: inherit; 102 font-size: inherit;
103 }; 103 };
104 width: 270px; 104 width: 270px;
105 } 105 }
106 106
107 #printerNameInput { 107 #printerNameInput {
108 width: 450px; 108 width: 450px;
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 <!-- Manufacturer and Model Dialog --> 370 <!-- Manufacturer and Model Dialog -->
371 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> 371 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp>
372 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" 372 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}"
373 setup-failed="[[setupFailed]]"> 373 setup-failed="[[setupFailed]]">
374 </add-printer-manufacturer-model-dialog> 374 </add-printer-manufacturer-model-dialog>
375 </template> 375 </template>
376 376
377 </template> 377 </template>
378 <script src="cups_add_printer_dialog.js"></script> 378 <script src="cups_add_printer_dialog.js"></script>
379 </dom-module> 379 </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