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

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

Issue 2920413002: MD Bookmarks: Focus sidebar nodes on click without showing an outline (Closed)
Patch Set: Fix override comment Created 3 years, 6 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 2
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <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-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://bookmarks/actions.html"> 6 <link rel="import" href="chrome://bookmarks/actions.html">
7 <link rel="import" href="chrome://bookmarks/command_manager.html"> 7 <link rel="import" href="chrome://bookmarks/command_manager.html">
8 <link rel="import" href="chrome://bookmarks/icons.html"> 8 <link rel="import" href="chrome://bookmarks/icons.html">
9 <link rel="import" href="chrome://bookmarks/mouse_focus_behavior.html">
9 <link rel="import" href="chrome://bookmarks/shared_style.html"> 10 <link rel="import" href="chrome://bookmarks/shared_style.html">
10 <link rel="import" href="chrome://bookmarks/store_client.html"> 11 <link rel="import" href="chrome://bookmarks/store_client.html">
11 12
12 <dom-module id="bookmarks-folder-node"> 13 <dom-module id="bookmarks-folder-node">
13 <template> 14 <template>
14 <style include="shared-style"> 15 <style include="shared-style">
15 :host { 16 :host {
16 --padding-start-per-depth: 36px; 17 --padding-start-per-depth: 36px;
17 display: block; 18 display: block;
18 } 19 }
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 as="child" 104 as="child"
104 filter="isFolder_"> 105 filter="isFolder_">
105 <bookmarks-folder-node item-id="[[child]]" 106 <bookmarks-folder-node item-id="[[child]]"
106 depth="[[getChildDepth_(depth)]]"> 107 depth="[[getChildDepth_(depth)]]">
107 </bookmarks-folder-node> 108 </bookmarks-folder-node>
108 </template> 109 </template>
109 </div> 110 </div>
110 </template> 111 </template>
111 <script src="chrome://bookmarks/folder_node.js"></script> 112 <script src="chrome://bookmarks/folder_node.js"></script>
112 </dom-module> 113 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/compiled_resources2.gyp ('k') | chrome/browser/resources/md_bookmarks/folder_node.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698