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

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

Issue 2846673003: MD Bookmarks: Simplify and improve consistency of CSS (Closed)
Patch Set: 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/html/cr/ui/splitter.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html">
3 <link rel="import" href="chrome://bookmarks/api_listener.html"> 3 <link rel="import" href="chrome://bookmarks/api_listener.html">
4 <link rel="import" href="chrome://bookmarks/constants.html"> 4 <link rel="import" href="chrome://bookmarks/constants.html">
5 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> 5 <link rel="import" href="chrome://bookmarks/dnd_manager.html">
6 <link rel="import" href="chrome://bookmarks/list.html"> 6 <link rel="import" href="chrome://bookmarks/list.html">
7 <link rel="import" href="chrome://bookmarks/router.html"> 7 <link rel="import" href="chrome://bookmarks/router.html">
8 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 8 <link rel="import" href="chrome://bookmarks/shared_vars.html">
9 <link rel="import" href="chrome://bookmarks/store.html"> 9 <link rel="import" href="chrome://bookmarks/store.html">
10 <link rel="import" href="chrome://bookmarks/toolbar.html"> 10 <link rel="import" href="chrome://bookmarks/toolbar.html">
11 <link rel="import" href="chrome://bookmarks/folder_node.html"> 11 <link rel="import" href="chrome://bookmarks/folder_node.html">
12 <link rel="import" href="chrome://bookmarks/util.html"> 12 <link rel="import" href="chrome://bookmarks/util.html">
13 13
14 <dom-module id="bookmarks-app"> 14 <dom-module id="bookmarks-app">
15 <template> 15 <template>
16 <style> 16 <style>
17 :host { 17 :host {
18 color: var(--primary-text-color);
18 display: flex; 19 display: flex;
19 flex-direction: column; 20 flex-direction: column;
20 height: 100%; 21 height: 100%;
22 line-height: 154%; /* 20px. */
21 } 23 }
22 24
23 #main-container { 25 #main-container {
24 display: flex; 26 display: flex;
25 flex-direction: row; 27 flex-direction: row;
26 flex-grow: 1; 28 flex-grow: 1;
27 overflow: auto; 29 overflow: auto;
28 } 30 }
29 31
30 #splitter { 32 #splitter {
(...skipping 30 matching lines...) Expand all
61 <div id="sidebar"> 63 <div id="sidebar">
62 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node> 64 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node>
63 </div> 65 </div>
64 <div id="splitter"></div> 66 <div id="splitter"></div>
65 <bookmarks-list></bookmarks-list> 67 <bookmarks-list></bookmarks-list>
66 </div> 68 </div>
67 <bookmarks-router></bookmarks-router> 69 <bookmarks-router></bookmarks-router>
68 </template> 70 </template>
69 <script src="chrome://bookmarks/app.js"></script> 71 <script src="chrome://bookmarks/app.js"></script>
70 </dom-module> 72 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/folder_node.html » ('j') | chrome/browser/resources/md_bookmarks/item.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698