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

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

Issue 2981503002: [MD Bookmarks] Refactor focus ring hiding. (Closed)
Patch Set: Created 3 years, 5 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">
10 <link rel="import" href="chrome://bookmarks/shared_style.html"> 9 <link rel="import" href="chrome://bookmarks/shared_style.html">
11 <link rel="import" href="chrome://bookmarks/store_client.html"> 10 <link rel="import" href="chrome://bookmarks/store_client.html">
12 11
13 <dom-module id="bookmarks-folder-node"> 12 <dom-module id="bookmarks-folder-node">
14 <template> 13 <template>
15 <style include="shared-style"> 14 <style include="shared-style">
16 :host { 15 :host {
17 --padding-start-per-depth: 36px; 16 --padding-start-per-depth: 36px;
18 display: block; 17 display: block;
19 } 18 }
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 as="child" 107 as="child"
109 filter="isFolder_"> 108 filter="isFolder_">
110 <bookmarks-folder-node item-id="[[child]]" 109 <bookmarks-folder-node item-id="[[child]]"
111 depth="[[getChildDepth_(depth)]]"> 110 depth="[[getChildDepth_(depth)]]">
112 </bookmarks-folder-node> 111 </bookmarks-folder-node>
113 </template> 112 </template>
114 </div> 113 </div>
115 </template> 114 </template>
116 <script src="chrome://bookmarks/folder_node.js"></script> 115 <script src="chrome://bookmarks/folder_node.js"></script>
117 </dom-module> 116 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698