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

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

Issue 2639893006: [MD Bookmarks] Add lines between items and no search results message. (Closed)
Patch Set: Fix css on separator line Created 3 years, 11 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
« no previous file with comments | « chrome/app/bookmarks_strings.grdp ('k') | chrome/browser/resources/md_bookmarks/bookmarks.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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://bookmarks/list.html"> 2 <link rel="import" href="chrome://bookmarks/list.html">
3 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 3 <link rel="import" href="chrome://bookmarks/shared_vars.html">
4 <link rel="import" href="chrome://bookmarks/sidebar.html"> 4 <link rel="import" href="chrome://bookmarks/sidebar.html">
5 <link rel="import" href="chrome://bookmarks/store.html"> 5 <link rel="import" href="chrome://bookmarks/store.html">
6 <link rel="import" href="chrome://bookmarks/toolbar.html"> 6 <link rel="import" href="chrome://bookmarks/toolbar.html">
7 7
8 <dom-module id="bookmarks-app"> 8 <dom-module id="bookmarks-app">
9 <template> 9 <template>
10 <style> 10 <style>
(...skipping 16 matching lines...) Expand all
27 } 27 }
28 28
29 bookmarks-list { 29 bookmarks-list {
30 flex: 1; 30 flex: 1;
31 } 31 }
32 </style> 32 </style>
33 <bookmarks-toolbar search-term="[[searchTerm]]"></bookmarks-toolbar> 33 <bookmarks-toolbar search-term="[[searchTerm]]"></bookmarks-toolbar>
34 <div id="main-container"> 34 <div id="main-container">
35 <bookmarks-sidebar root-folders="[[rootNode.children]]"> 35 <bookmarks-sidebar root-folders="[[rootNode.children]]">
36 </bookmarks-sidebar> 36 </bookmarks-sidebar>
37 <bookmarks-list displayed-list="[[displayedList]]"></bookmarks-list> 37 <bookmarks-list displayed-list="[[displayedList]]"
38 search-term="[[searchTerm]]"></bookmarks-list>
38 </div> 39 </div>
39 <bookmarks-store selected-id="{{selectedId}}" 40 <bookmarks-store selected-id="{{selectedId}}"
40 root-node="{{rootNode}}" 41 root-node="{{rootNode}}"
41 search-term="{{searchTerm}}" 42 search-term="{{searchTerm}}"
42 displayed-list="{{displayedList}}"> 43 displayed-list="{{displayedList}}">
43 </bookmarks-store> 44 </bookmarks-store>
44 </template> 45 </template>
45 <script src="chrome://bookmarks/app.js"></script> 46 <script src="chrome://bookmarks/app.js"></script>
46 </dom-module> 47 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/bookmarks_strings.grdp ('k') | chrome/browser/resources/md_bookmarks/bookmarks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698