Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: chrome/browser/resources/md_history/history_card.html

Issue 1643693003: MD History: Implement search functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch_to_be_uploaded
Patch Set: Fix time-gap-separator insertion. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/history_card.html
diff --git a/chrome/browser/resources/md_history/history_card.html b/chrome/browser/resources/md_history/history_card.html
index 3fd46e4d958a0749f6fce2475da7bec64f7cbd59..b41792006a8ba97070534730bc38bc17651462f4 100644
--- a/chrome/browser/resources/md_history/history_card.html
+++ b/chrome/browser/resources/md_history/history_card.html
@@ -12,6 +12,10 @@
padding: 0 24px 20px;
}
+ :host([hidden]) {
+ display: none !important;
+ }
+
#main-container {
@apply(--shadow-elevation-2dp);
background: #fff;
@@ -46,20 +50,23 @@
</style>
<div id="main-container">
- <div id="date-accessed">[[historyDate]]</div>
+ <div id="date-accessed">
+ {{cardTitle_(historyItems.length, searchTerm, historyDate)}}
+ </div>
<div id="history-item-list">
<template is="dom-repeat" items="{{historyItems}}"
as="historyItem">
- <history-item time-accessed_="[[historyItem.dateTimeOfDay]]"
+ <history-item time-accessed_="[[historyItem.visibleTimestamp]]"
website-title_="[[historyItem.title]]"
website-domain_="[[historyItem.domain]]"
website-url_="[[historyItem.url]]"
starred="[[historyItem.starred]]"
selected="{{historyItem.selected}}"
- timestamp_="[[historyItem.time]]">
+ timestamp_="[[historyItem.time]]"
+ search-term="[[searchTerm]]">
</history-item>
<template is="dom-if"
- if="[[needsTimeGap_(index, historyItems.length)]]">
+ if="[[needsTimeGap_(index, historyItems.length, searchTerm)]]">
<div id="time-gap-separator"></div>
</template>
</template>

Powered by Google App Engine
This is Rietveld 408576698