| OLD | NEW |
| 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/cr_elements/cr_action_menu/cr_action
_menu.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 4 <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-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 6 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> | 6 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> |
| 7 <link rel="import" href="chrome://bookmarks/item.html"> | 7 <link rel="import" href="chrome://bookmarks/item.html"> |
| 8 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 8 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 9 <link rel="import" href="chrome://bookmarks/store_client.html"> | 9 <link rel="import" href="chrome://bookmarks/store_client.html"> |
| 10 <link rel="import" href="chrome://bookmarks/util.html"> | 10 <link rel="import" href="chrome://bookmarks/util.html"> |
| 11 | 11 |
| 12 <dom-module id="bookmarks-list"> | 12 <dom-module id="bookmarks-list"> |
| 13 <template> | 13 <template> |
| 14 <style include="shared-style"> | 14 <style include="shared-style"> |
| 15 :host { | 15 :host { |
| 16 overflow-y: auto; | 16 overflow-y: auto; |
| 17 padding: 20px 32px 20px calc(32px - var(--splitter-width)); | 17 padding: 20px var(--card-padding-side) 20px |
| 18 calc(var(--card-padding-side) - var(--splitter-width)); |
| 18 } | 19 } |
| 19 | 20 |
| 20 #bookmarksCard { | 21 #bookmarksCard { |
| 21 @apply(--shadow-elevation-2dp); | 22 @apply(--shadow-elevation-2dp); |
| 22 background-color: #fff; | 23 background-color: #fff; |
| 23 margin: 0 auto; | 24 margin: 0 auto; |
| 24 max-width: var(--card-max-width); | 25 max-width: var(--card-max-width); |
| 25 padding: 8px 0; | 26 padding: 8px 0; |
| 26 } | 27 } |
| 27 | 28 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 56 <div id="message" class="centered-message" | 57 <div id="message" class="centered-message" |
| 57 hidden$="[[!isEmptyList_(displayedList_.length)]]"> | 58 hidden$="[[!isEmptyList_(displayedList_.length)]]"> |
| 58 [[emptyListMessage_(searchTerm_)]] | 59 [[emptyListMessage_(searchTerm_)]] |
| 59 </div> | 60 </div> |
| 60 <template is="cr-lazy-render" id="editDialog"> | 61 <template is="cr-lazy-render" id="editDialog"> |
| 61 <bookmarks-edit-dialog></bookmarks-edit-dialog> | 62 <bookmarks-edit-dialog></bookmarks-edit-dialog> |
| 62 </template> | 63 </template> |
| 63 </template> | 64 </template> |
| 64 <script src="chrome://bookmarks/list.js"></script> | 65 <script src="chrome://bookmarks/list.js"></script> |
| 65 </dom-module> | 66 </dom-module> |
| OLD | NEW |