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

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

Issue 2786113002: MD Settings: up contast of headers and other things that use grey 500 on white (Closed)
Patch Set: Created 3 years, 8 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/html/action_link.html"> 1 <link rel="import" href="chrome://resources/html/action_link.html">
2 <link rel="import" href="chrome://resources/html/action_link_css.html"> 2 <link rel="import" href="chrome://resources/html/action_link_css.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="cups_add_printer_dialog.html"> 4 <link rel="import" href="cups_add_printer_dialog.html">
5 <link rel="import" href="cups_printers_list.html"> 5 <link rel="import" href="cups_printers_list.html">
6 <link rel="import" href="../settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
7 7
8 <dom-module id="settings-cups-printers"> 8 <dom-module id="settings-cups-printers">
9 <template> 9 <template>
10 <style include="settings-shared action-link"> 10 <style include="settings-shared action-link">
11 .settings-box .start { 11 .settings-box .start {
12 color: var(--paper-grey-500); 12 color: var(--paper-grey-600);
13 } 13 }
14 14
15 .settings-box .start .secondary { 15 .settings-box .start .secondary {
16 color: var(--paper-grey-800); 16 color: var(--paper-grey-800);
17 font-size: 92.31%; /* 12px / 13px */ 17 font-size: 92.31%; /* 12px / 13px */
18 } 18 }
19 19
20 #message { 20 #message {
21 display: flex; 21 display: flex;
22 justify-content: center; 22 justify-content: center;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 <div class="center" id="addPrinterErrorMessage" hidden> 72 <div class="center" id="addPrinterErrorMessage" hidden>
73 <span>$i18n{printerAddedFailedMessage}</span> 73 <span>$i18n{printerAddedFailedMessage}</span>
74 <a is="action-link" on-tap="onAddPrinterTap_"> 74 <a is="action-link" on-tap="onAddPrinterTap_">
75 $i18n{printerAddedTryAgainMessage} 75 $i18n{printerAddedTryAgainMessage}
76 </a> 76 </a>
77 </div> 77 </div>
78 </div> 78 </div>
79 </template> 79 </template>
80 <script src="cups_printers.js"></script> 80 <script src="cups_printers.js"></script>
81 </dom-module> 81 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698