OLD | NEW |
---|---|
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.html"> |
3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.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-styles/shadow.htm l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> |
6 <link rel="import" href="chrome://resources/html/icon.html"> | 6 <link rel="import" href="chrome://resources/html/icon.html"> |
7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
8 <link rel="import" href="chrome://history/browser_service.html"> | 8 <link rel="import" href="chrome://history/browser_service.html"> |
9 <link rel="import" href="chrome://history/constants.html"> | 9 <link rel="import" href="chrome://history/constants.html"> |
10 <link rel="import" href="chrome://history/searched_label.html"> | 10 <link rel="import" href="chrome://history/searched_label.html"> |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 | 200 |
201 :host([is-card-start][is-card-end]) #background { | 201 :host([is-card-start][is-card-end]) #background { |
202 border-radius: 2px; | 202 border-radius: 2px; |
203 } | 203 } |
204 </style> | 204 </style> |
205 | 205 |
206 <div id="main-container"> | 206 <div id="main-container"> |
207 <div id="background-clip"> | 207 <div id="background-clip"> |
208 <div id="background"></div> | 208 <div id="background"></div> |
209 </div> | 209 </div> |
210 <div id="date-accessed" class="card-title"> | 210 <div id="date-accessed" class="card-title" |
211 on-mousedown="onTitleMousedown_"> | |
Dan Beam
2016/10/13 17:40:24
can we just do pointer-events: none instead? basi
calamity
2016/10/14 12:26:25
Done.
| |
211 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] | 212 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] |
212 </div> | 213 </div> |
213 <div id="item-container"> | 214 <div id="item-container"> |
214 <button is="paper-icon-button-light" id="checkbox" | 215 <button is="paper-icon-button-light" id="checkbox" |
215 on-mousedown="onCheckboxMousedown_" | 216 on-mousedown="onCheckboxMousedown_" |
216 on-click="onCheckboxSelected_" | 217 on-click="onCheckboxSelected_" |
217 disabled="[[selectionNotAllowed_()]]" | 218 disabled="[[selectionNotAllowed_()]]" |
218 role="checkbox" | 219 role="checkbox" |
219 aria-checked$="[[getAriaChecked_(selected)]]" | 220 aria-checked$="[[getAriaChecked_(selected)]]" |
220 aria-label$="[[getEntrySummary_(item)]]"> | 221 aria-label$="[[getEntrySummary_(item)]]"> |
(...skipping 24 matching lines...) Expand all Loading... | |
245 <div></div> | 246 <div></div> |
246 <div></div> | 247 <div></div> |
247 <div></div> | 248 <div></div> |
248 </button> | 249 </button> |
249 </div> | 250 </div> |
250 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 251 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
251 </div> | 252 </div> |
252 </template> | 253 </template> |
253 <script src="chrome://history/history_item.js"></script> | 254 <script src="chrome://history/history_item.js"></script> |
254 </dom-module> | 255 </dom-module> |
OLD | NEW |