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

Side by Side Diff: chrome/browser/resources/md_bookmarks/list.html

Issue 2827573002: MD Bookmarks: Show toolbar overlay when multiple items are selected (Closed)
Patch Set: Review comments 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
3 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
6 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> 6 <link rel="import" href="chrome://bookmarks/edit_dialog.html">
7 <link rel="import" href="chrome://bookmarks/item.html"> 7 <link rel="import" href="chrome://bookmarks/item.html">
8 <link rel="import" href="chrome://bookmarks/shared_style.html"> 8 <link rel="import" href="chrome://bookmarks/shared_style.html">
9 <link rel="import" href="chrome://bookmarks/store_client.html"> 9 <link rel="import" href="chrome://bookmarks/store_client.html">
10 <link rel="import" href="chrome://bookmarks/util.html"> 10 <link rel="import" href="chrome://bookmarks/util.html">
11 11
12 <dom-module id="bookmarks-list"> 12 <dom-module id="bookmarks-list">
13 <template> 13 <template>
14 <style include="shared-style"> 14 <style include="shared-style">
15 :host { 15 :host {
16 overflow-y: auto; 16 overflow-y: auto;
17 padding: 20px 32px 20px calc(32px - var(--splitter-width)); 17 padding: 20px var(--card-padding-side) 20px
18 calc(var(--card-padding-side) - var(--splitter-width));
18 } 19 }
19 20
20 #bookmarksCard { 21 #bookmarksCard {
21 @apply(--shadow-elevation-2dp); 22 @apply(--shadow-elevation-2dp);
22 background-color: #fff; 23 background-color: #fff;
23 margin: 0 auto; 24 margin: 0 auto;
24 max-width: var(--card-max-width); 25 max-width: var(--card-max-width);
25 padding: 8px 0; 26 padding: 8px 0;
26 } 27 }
27 28
(...skipping 28 matching lines...) Expand all
56 <div id="message" class="centered-message" 57 <div id="message" class="centered-message"
57 hidden$="[[!isEmptyList_(displayedList_.length)]]"> 58 hidden$="[[!isEmptyList_(displayedList_.length)]]">
58 [[emptyListMessage_(searchTerm_)]] 59 [[emptyListMessage_(searchTerm_)]]
59 </div> 60 </div>
60 <template is="cr-lazy-render" id="editDialog"> 61 <template is="cr-lazy-render" id="editDialog">
61 <bookmarks-edit-dialog></bookmarks-edit-dialog> 62 <bookmarks-edit-dialog></bookmarks-edit-dialog>
62 </template> 63 </template>
63 </template> 64 </template>
64 <script src="chrome://bookmarks/list.js"></script> 65 <script src="chrome://bookmarks/list.js"></script>
65 </dom-module> 66 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/edit_dialog.html ('k') | chrome/browser/resources/md_bookmarks/shared_vars.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698