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_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
9 <link rel="import" href="chrome://bookmarks/item.html"> | 9 <link rel="import" href="chrome://bookmarks/item.html"> |
10 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 10 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
11 <link rel="import" href="chrome://bookmarks/store_client.html"> | 11 <link rel="import" href="chrome://bookmarks/store_client.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-list"> | 14 <dom-module id="bookmarks-list"> |
15 <template> | 15 <template> |
16 <style include="shared-style cr-shared-style"> | 16 <style include="shared-style cr-shared-style"> |
17 :host { | 17 :host { |
| 18 overflow: auto; |
18 padding: 20px 32px; | 19 padding: 20px 32px; |
19 } | 20 } |
20 | 21 |
21 #bookmarksCard { | 22 #bookmarksCard { |
22 @apply(--shadow-elevation-2dp); | 23 @apply(--shadow-elevation-2dp); |
23 background-color: #fff; | 24 background-color: #fff; |
24 margin: 0 auto; | 25 margin: 0 auto; |
25 max-width: var(--card-max-width); | 26 max-width: var(--card-max-width); |
26 min-width: var(--card-min-width); | 27 min-width: var(--card-min-width); |
27 padding: 8px 0; | 28 padding: 8px 0; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 </bookmarks-item> | 79 </bookmarks-item> |
79 </template> | 80 </template> |
80 </div> | 81 </div> |
81 <div class="centered-message" | 82 <div class="centered-message" |
82 hidden$="[[!isEmptyList_(displayedList.length)]]"> | 83 hidden$="[[!isEmptyList_(displayedList.length)]]"> |
83 [[emptyListMessage_(searchTerm)]] | 84 [[emptyListMessage_(searchTerm)]] |
84 </div> | 85 </div> |
85 </template> | 86 </template> |
86 <script src="chrome://bookmarks/list.js"></script> | 87 <script src="chrome://bookmarks/list.js"></script> |
87 </dom-module> | 88 </dom-module> |
OLD | NEW |