| 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/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 3 <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-icons/iron-icons.h
tml"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
| 9 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
| 9 <link rel="import" href="chrome://history/history_icons.html"> |
| 10 | 10 |
| 11 <dom-module id="history-item"> | 11 <dom-module id="history-item"> |
| 12 <template> | 12 <template> |
| 13 <style include="shared-style"> | 13 <style include="shared-style"> |
| 14 :host { | 14 :host { |
| 15 @apply(--layout-center); | 15 @apply(--layout-center); |
| 16 @apply(--layout-vertical); | 16 @apply(--layout-vertical); |
| 17 padding: 0 var(--card-padding-side); | 17 padding: 0 var(--card-padding-side); |
| 18 } | 18 } |
| 19 | 19 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 <div id="item-container"> | 123 <div id="item-container"> |
| 124 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_" | 124 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_" |
| 125 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]"> | 125 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]"> |
| 126 </paper-checkbox> | 126 </paper-checkbox> |
| 127 <span id="time-accessed">[[item.readableTimestamp]]</span> | 127 <span id="time-accessed">[[item.readableTimestamp]]</span> |
| 128 <div class="website-icon" id="icon"></div> | 128 <div class="website-icon" id="icon"></div> |
| 129 <div id="title-and-domain"> | 129 <div id="title-and-domain"> |
| 130 <a href="[[item.url]]" id="title" class="website-title"></a> | 130 <a href="[[item.url]]" id="title" class="website-title"></a> |
| 131 <span id="domain">[[item.domain]]</span> | 131 <span id="domain">[[item.domain]]</span> |
| 132 </div> | 132 </div> |
| 133 <iron-icon icon="star" id="bookmark-star"></iron-icon> | 133 <iron-icon icon="history-icons:star" id="bookmark-star"></iron-icon> |
| 134 <paper-icon-button icon="more-vert" id="menu-button" | 134 <paper-icon-button icon="history-icons:more-vert" id="menu-button" |
| 135 on-tap="onMenuButtonTap_"> | 135 on-tap="onMenuButtonTap_"> |
| 136 </paper-icon-button> | 136 </paper-icon-button> |
| 137 </div> | 137 </div> |
| 138 <template is="dom-if" if="[[hasTimeGap]]"> | 138 <template is="dom-if" if="[[hasTimeGap]]"> |
| 139 <div id="time-gap-separator"></div> | 139 <div id="time-gap-separator"></div> |
| 140 </template> | 140 </template> |
| 141 </div> | 141 </div> |
| 142 </template> | 142 </template> |
| 143 <script src="chrome://history/history_item.js"></script> | 143 <script src="chrome://history/history_item.js"></script> |
| 144 </dom-module> | 144 </dom-module> |
| OLD | NEW |