| 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/shared_style.html"> | 6 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 7 | 7 |
| 8 <dom-module id="bookmarks-item"> | 8 <dom-module id="bookmarks-item"> |
| 9 <template> | 9 <template> |
| 10 <style include="shared-style"> | 10 <style include="shared-style"> |
| 11 :host { | 11 :host { |
| 12 -webkit-padding-start: 20px; | 12 -webkit-padding-start: 20px; |
| 13 align-items: center; | 13 align-items: center; |
| 14 display: flex; | 14 display: flex; |
| 15 flex-direction: row; | 15 flex-direction: row; |
| 16 height: 40px; | 16 height: 40px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 :host(:not(:last-of-type)) { | |
| 20 border-bottom: var(--cr-separator-line); | |
| 21 } | |
| 22 | |
| 23 #website-title { | 19 #website-title { |
| 24 color: var(--primary-text-color); | 20 color: var(--primary-text-color); |
| 25 cursor: pointer; | 21 cursor: pointer; |
| 26 flex: 1; | 22 flex: 1; |
| 27 overflow: hidden; | 23 overflow: hidden; |
| 28 text-decoration: none; | 24 text-decoration: none; |
| 29 text-overflow: ellipsis; | 25 text-overflow: ellipsis; |
| 30 white-space: nowrap; | 26 white-space: nowrap; |
| 31 } | 27 } |
| 32 | 28 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 63 </div> | 59 </div> |
| 64 <button is="paper-icon-button-light" class="more-vert-button" | 60 <button is="paper-icon-button-light" class="more-vert-button" |
| 65 on-tap="onMenuButtonOpenTap_"> | 61 on-tap="onMenuButtonOpenTap_"> |
| 66 <div></div> | 62 <div></div> |
| 67 <div></div> | 63 <div></div> |
| 68 <div></div> | 64 <div></div> |
| 69 </button> | 65 </button> |
| 70 </template> | 66 </template> |
| 71 <script src="chrome://bookmarks/item.js"></script> | 67 <script src="chrome://bookmarks/item.js"></script> |
| 72 <dom-module> | 68 <dom-module> |
| OLD | NEW |