| 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/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.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/shared_style.html"> | 7 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 8 <link rel="import" href="chrome://bookmarks/store_client.html"> |
| 7 | 9 |
| 8 <dom-module id="bookmarks-item"> | 10 <dom-module id="bookmarks-item"> |
| 9 <template> | 11 <template> |
| 10 <style include="shared-style"> | 12 <style include="shared-style"> |
| 11 :host { | 13 :host { |
| 12 -webkit-padding-start: 20px; | 14 -webkit-padding-start: 20px; |
| 13 -webkit-user-select: none; | 15 -webkit-user-select: none; |
| 14 align-items: center; | 16 align-items: center; |
| 15 display: flex; | 17 display: flex; |
| 16 flex-direction: row; | 18 flex-direction: row; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 </div> | 66 </div> |
| 65 <button is="paper-icon-button-light" class="more-vert-button" | 67 <button is="paper-icon-button-light" class="more-vert-button" |
| 66 on-click="onMenuButtonOpenClick_"> | 68 on-click="onMenuButtonOpenClick_"> |
| 67 <div></div> | 69 <div></div> |
| 68 <div></div> | 70 <div></div> |
| 69 <div></div> | 71 <div></div> |
| 70 </button> | 72 </button> |
| 71 </template> | 73 </template> |
| 72 <script src="chrome://bookmarks/item.js"></script> | 74 <script src="chrome://bookmarks/item.js"></script> |
| 73 <dom-module> | 75 <dom-module> |
| OLD | NEW |