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

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

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: add missing files 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/cr_elements/cr_action_menu/cr_action _menu.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.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/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
5 <link rel="import" href="cups_printers_browser_proxy.html"> 5 <link rel="import" href="cups_printers_browser_proxy.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-list"> 8 <dom-module id="settings-cups-printers-list">
9 <template> 9 <template>
10 <style include="settings-shared"> 10 <style include="settings-shared">
11 #container { 11 #container {
12 border-top: 1px solid lightgray; 12 border-top: 1px solid lightgray;
13 display: flex; 13 display: flex;
14 padding: 2px 20px; 14 padding: 2px 20px;
(...skipping 17 matching lines...) Expand all
32 $i18n{removePrinter} 32 $i18n{removePrinter}
33 </button> 33 </button>
34 </dialog> 34 </dialog>
35 <template is="dom-repeat" items="[[printers]]" 35 <template is="dom-repeat" items="[[printers]]"
36 filter="[[filterPrinter_(searchTerm)]]"> 36 filter="[[filterPrinter_(searchTerm)]]">
37 <div id="container" class="list-item"> 37 <div id="container" class="list-item">
38 <div class="name-column"> 38 <div class="name-column">
39 <span class="name" id="printer-name">[[item.printerName]]</span> 39 <span class="name" id="printer-name">[[item.printerName]]</span>
40 <!--TODO(xdai): Add icon for enterprise CUPS printer. --> 40 <!--TODO(xdai): Add icon for enterprise CUPS printer. -->
41 </div> 41 </div>
42 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_" 42 <button is="paper-icon-button-light" class="icon-more-vert"
43 title="$i18n{moreActions}"> 43 on-tap="onOpenActionMenuTap_" title="$i18n{moreActions}">
44 </paper-icon-button> 44 </button>
45 </div> 45 </div>
46 </template> 46 </template>
47 </template> 47 </template>
48 <script src="cups_printers_list.js"></script> 48 <script src="cups_printers_list.js"></script>
49 </dom-module> 49 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698