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

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

Issue 2592293003: [MD Bookmarks] Add skeleton for MD Bookmarks. (Closed)
Patch Set: Remove css no longer needed for cr toolbar. 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
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://bookmarks/list.html">
3 <link rel="import" href="chrome://bookmarks/sidebar.html">
tsergeant 2016/12/28 23:51:50 Sort: shared comes before sidebar
angelayang 2016/12/29 02:53:34 Done.
4 <link rel="import" href="chrome://bookmarks/shared_vars.html">
5 <link rel="import" href="chrome://bookmarks/store.html">
6 <link rel="import" href="chrome://bookmarks/toolbar.html">
7
8 <dom-module id="bookmarks-app">
9 <template>
10 <style>
11 :host {
12 display: flex;
13 flex-direction: column;
14 height: 100%;
15 overflow: hidden;
16 }
17
18 #main-container {
19 display: flex;
20 flex-direction: row;
21 flex-grow: 1;
22 overflow: auto;
23 }
24
25 bookmarks-sidebar {
26 flex: 0 0 var(--sidebar-width);
27 }
28
29 bookmarks-list {
30 flex: 1;
31 }
32 </style>
33 <bookmarks-toolbar></bookmarks-toolbar>
34 <div id="main-container">
35 <bookmarks-sidebar root-folders="[[rootNode.children]]">
36 </bookmarks-sidebar>
37 <bookmarks-list selected-node="[[selectedNode]]"></bookmarks-list>
38 </div>
39 <bookmarks-store selected-id="{{selectedId}}"
40 selected-node="{{selectedNode}}"
41 root-node="{{rootNode}}">
42 </bookmarks-store>
43 </template>
44 <script src="chrome://bookmarks/app.js"></script>
45 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698