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

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

Issue 2716233002: MD Settings: add "More actions..." text to all vertical 3-dot menus (Closed)
Patch Set: Created 3 years, 9 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.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">
(...skipping 21 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 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_"
43 title="$i18n{moreActions}">
43 </paper-icon-button> 44 </paper-icon-button>
44 </div> 45 </div>
45 </template> 46 </template>
46 </template> 47 </template>
47 <script src="cups_printers_list.js"></script> 48 <script src="cups_printers_list.js"></script>
48 </dom-module> 49 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698