| Index: chrome/browser/resources/md_bookmarks/folder_node.html
|
| diff --git a/chrome/browser/resources/md_bookmarks/folder_node.html b/chrome/browser/resources/md_bookmarks/folder_node.html
|
| index 507ccb98500d08f6309276c05af7f654d0cadfe1..6f2c5afa57bf7487ae92509f6aa7a00ef7b2bd98 100644
|
| --- a/chrome/browser/resources/md_bookmarks/folder_node.html
|
| +++ b/chrome/browser/resources/md_bookmarks/folder_node.html
|
| @@ -32,10 +32,7 @@
|
|
|
| #container {
|
| height: 40px;
|
| - }
|
| -
|
| - #descendants {
|
| - -webkit-padding-start: 40.5px;
|
| + padding-left: calc(var(--node-depth, 0) * 30px);
|
| }
|
|
|
| #folder-label {
|
| @@ -80,7 +77,8 @@
|
| items="[[item_.children]]"
|
| as="child"
|
| filter="isFolder_">
|
| - <bookmarks-folder-node item-id="[[child]]">
|
| + <bookmarks-folder-node item-id="[[child]]"
|
| + depth="[[getChildDepth_(depth)]]">
|
| </bookmarks-folder-node>
|
| </template>
|
| </div>
|
|
|