| 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/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/icon.html"> | 4 <link rel="import" href="chrome://resources/html/icon.html"> |
| 5 <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/iron-icon/iron-icon.htm
l"> |
| 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://bookmarks/actions.html"> | 7 <link rel="import" href="chrome://bookmarks/actions.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 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 background-repeat: no-repeat; | 55 background-repeat: no-repeat; |
| 56 height: 16px; | 56 height: 16px; |
| 57 margin: 2px; | 57 margin: 2px; |
| 58 width: 16px; | 58 width: 16px; |
| 59 } | 59 } |
| 60 | 60 |
| 61 button.more-vert-button { | 61 button.more-vert-button { |
| 62 -webkit-margin-end: 12px; | 62 -webkit-margin-end: 12px; |
| 63 } | 63 } |
| 64 </style> | 64 </style> |
| 65 <a id="url" href="[[openItemUrl_]]"> | 65 <div id="url"> |
| 66 <div id="icon-wrapper"> | 66 <div id="icon-wrapper"> |
| 67 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]"> | 67 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]"> |
| 68 </iron-icon> | 68 </iron-icon> |
| 69 <div id="icon" hidden$="[[isFolder_]]"></div> | 69 <div id="icon" hidden$="[[isFolder_]]"></div> |
| 70 </div> | 70 </div> |
| 71 <div id="website-title"> | 71 <div id="website-title"> |
| 72 [[item_.title]] | 72 [[item_.title]] |
| 73 </div> | 73 </div> |
| 74 <button is="paper-icon-button-light" class="more-vert-button" | 74 <button is="paper-icon-button-light" class="more-vert-button" |
| 75 on-click="onMenuButtonClick_" on-dblclick="onMenuButtonDblClick_" | 75 on-click="onMenuButtonClick_" on-dblclick="onMenuButtonDblClick_" |
| 76 tabindex$="[[ironListTabIndex]]" on-focus="onItemBlur_"> | 76 tabindex$="[[ironListTabIndex]]" on-focus="onItemBlur_"> |
| 77 <div></div> | 77 <div></div> |
| 78 <div></div> | 78 <div></div> |
| 79 <div></div> | 79 <div></div> |
| 80 </button> | 80 </button> |
| 81 </a> | 81 </div> |
| 82 </template> | 82 </template> |
| 83 <script src="chrome://bookmarks/item.js"></script> | 83 <script src="chrome://bookmarks/item.js"></script> |
| 84 <dom-module> | 84 <dom-module> |
| OLD | NEW |