| OLD | NEW |
| 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/polymer/v1_0/iron-list/iron-list.htm
l"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 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/command_manager.html"> | 6 <link rel="import" href="chrome://bookmarks/command_manager.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"> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 cursor: default; | 32 cursor: default; |
| 33 display: flex; | 33 display: flex; |
| 34 font-size: 14px; | 34 font-size: 14px; |
| 35 font-weight: 500; | 35 font-weight: 500; |
| 36 height: 100%; | 36 height: 100%; |
| 37 justify-content: center; | 37 justify-content: center; |
| 38 user-select: none; | 38 user-select: none; |
| 39 } | 39 } |
| 40 </style> | 40 </style> |
| 41 <iron-list items="[[displayedList_]]" id="bookmarksCard" | 41 <iron-list items="[[displayedList_]]" id="bookmarksCard" |
| 42 hidden$="[[isEmptyList_(displayedList_.length)]]"> | 42 hidden$="[[isEmptyList_(displayedList_.length)]]" role="list"> |
| 43 <template> | 43 <template> |
| 44 <bookmarks-item item-id="[[item.id]]" draggable="true" | 44 <bookmarks-item item-id="[[item.id]]" draggable="true" |
| 45 tabindex$="[[tabIndex]]" iron-list-tab-index="[[tabIndex]]"> | 45 tabindex$="[[tabIndex]]" iron-list-tab-index="[[tabIndex]]"> |
| 46 </bookmarks-item> | 46 </bookmarks-item> |
| 47 </template> | 47 </template> |
| 48 </iron-list> | 48 </iron-list> |
| 49 <div id="message" class="centered-message" | 49 <div id="message" class="centered-message" |
| 50 hidden$="[[!isEmptyList_(displayedList_.length)]]"> | 50 hidden$="[[!isEmptyList_(displayedList_.length)]]"> |
| 51 [[emptyListMessage_(searchTerm_)]] | 51 [[emptyListMessage_(searchTerm_)]] |
| 52 </div> | 52 </div> |
| 53 </template> | 53 </template> |
| 54 <script src="chrome://bookmarks/list.js"></script> | 54 <script src="chrome://bookmarks/list.js"></script> |
| 55 </dom-module> | 55 </dom-module> |
| OLD | NEW |