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

Side by Side Diff: ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_selection_overlay.html

Issue 2893833002: MD Bookmarks: Enable the delete button in the toolbar overlay (Closed)
Patch Set: Fix nit 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.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/polymer/v1_0/paper-button/paper-butt on.html"> 3 <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-icon-button/paper -icon-button-light.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
5 5
6 <dom-module id="cr-toolbar-selection-overlay"> 6 <dom-module id="cr-toolbar-selection-overlay">
7 <template> 7 <template>
8 <style> 8 <style>
9 :host { 9 :host {
10 -webkit-padding-start: var(--cr-toolbar-field-margin, 0); 10 -webkit-padding-start: var(--cr-toolbar-field-margin, 0);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <div id="overlay-content"> 44 <div id="overlay-content">
45 <button is="paper-icon-button-light" 45 <button is="paper-icon-button-light"
46 on-tap="onClearSelectionTap_" 46 on-tap="onClearSelectionTap_"
47 title="[[cancelLabel]]"> 47 title="[[cancelLabel]]">
48 <iron-icon icon="cr:clear"></iron-icon> 48 <iron-icon icon="cr:clear"></iron-icon>
49 </button> 49 </button>
50 <div id="number-selected">[[selectionLabel]]</div> 50 <div id="number-selected">[[selectionLabel]]</div>
51 <paper-button on-tap="onClearSelectionTap_"> 51 <paper-button on-tap="onClearSelectionTap_">
52 [[cancelLabel]] 52 [[cancelLabel]]
53 </paper-button> 53 </paper-button>
54 <paper-button on-tap="onDeleteTap_"> 54 <paper-button id="delete" on-tap="onDeleteTap_">
55 [[deleteLabel]] 55 [[deleteLabel]]
56 </paper-button> 56 </paper-button>
57 </div> 57 </div>
58 </template> 58 </template>
59 <script src="cr_toolbar_selection_overlay.js"></script> 59 <script src="cr_toolbar_selection_overlay.js"></script>
60 </dom-module> 60 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698