Chromium Code Reviews| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 54 #icon { | 54 #icon { |
| 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 | |
| 65 a { | |
| 66 outline: none; | |
| 67 } | |
| 64 </style> | 68 </style> |
| 65 <a id="url" href="[[openItemUrl_]]"> | 69 <a id="url" href="[[openItemUrl_]]" tabindex="-1"> |
|
tsergeant
2017/05/23 07:25:17
As discussed, maybe change this <a> back into a <d
calamity
2017/05/25 07:36:29
Acknowledged.
| |
| 66 <div id="icon-wrapper"> | 70 <div id="icon-wrapper"> |
| 67 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]"> | 71 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]"> |
| 68 </iron-icon> | 72 </iron-icon> |
| 69 <div id="icon" hidden$="[[isFolder_]]"></div> | 73 <div id="icon" hidden$="[[isFolder_]]"></div> |
| 70 </div> | 74 </div> |
| 71 <div id="website-title"> | 75 <div id="website-title"> |
| 72 [[item_.title]] | 76 [[item_.title]] |
| 73 </div> | 77 </div> |
| 74 <button is="paper-icon-button-light" class="more-vert-button" | 78 <button is="paper-icon-button-light" class="more-vert-button" |
| 75 on-click="onMenuButtonClick_" on-dblclick="onMenuButtonDblClick_" | 79 on-click="onMenuButtonClick_" on-dblclick="onMenuButtonDblClick_" |
| 76 tabindex$="[[ironListTabIndex]]" on-focus="onItemBlur_"> | 80 tabindex$="[[ironListTabIndex]]" on-focus="onItemBlur_"> |
| 77 <div></div> | 81 <div></div> |
| 78 <div></div> | 82 <div></div> |
| 79 <div></div> | 83 <div></div> |
| 80 </button> | 84 </button> |
| 81 </a> | 85 </a> |
| 82 </template> | 86 </template> |
| 83 <script src="chrome://bookmarks/item.js"></script> | 87 <script src="chrome://bookmarks/item.js"></script> |
| 84 <dom-module> | 88 <dom-module> |
| OLD | NEW |