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

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

Issue 2842303004: MD Settings: update dialogs to focus without ink when using mouse (Closed)
Patch Set: merge 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
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/assert.html">
4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="cups_add_printer_dialog.html"> 6 <link rel="import" href="cups_add_printer_dialog.html">
5 <link rel="import" href="cups_printers_list.html"> 7 <link rel="import" href="cups_printers_list.html">
6 <link rel="import" href="../settings_shared_css.html"> 8 <link rel="import" href="../settings_shared_css.html">
7 9
8 <dom-module id="settings-cups-printers"> 10 <dom-module id="settings-cups-printers">
9 <template> 11 <template>
10 <style include="settings-shared action-link"> 12 <style include="settings-shared action-link">
11 .settings-box .start { 13 .settings-box .start {
12 color: var(--paper-grey-600); 14 color: var(--paper-grey-600);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 <div class="center" id="addPrinterErrorMessage" hidden> 75 <div class="center" id="addPrinterErrorMessage" hidden>
74 <span>$i18n{printerAddedFailedMessage}</span> 76 <span>$i18n{printerAddedFailedMessage}</span>
75 <a is="action-link" on-tap="onAddPrinterTap_"> 77 <a is="action-link" on-tap="onAddPrinterTap_">
76 $i18n{printerAddedTryAgainMessage} 78 $i18n{printerAddedTryAgainMessage}
77 </a> 79 </a>
78 </div> 80 </div>
79 </div> 81 </div>
80 </template> 82 </template>
81 <script src="cups_printers.js"></script> 83 <script src="cups_printers.js"></script>
82 </dom-module> 84 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698