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

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

Issue 1643693003: MD History: Implement search functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch_to_be_uploaded
Patch Set: Rebase and address reviewer comments. 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
« no previous file with comments | « chrome/browser/resources/md_history/history.js ('k') | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/history_item.html
diff --git a/chrome/browser/resources/md_history/history_item.html b/chrome/browser/resources/md_history/history_item.html
index 6d685818a2a66b23a6112e8d8fdd26648e3dd844..0b2452c47bac831c68072302e9a57070de34f319 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -17,6 +17,10 @@
padding: 0 24px;
}
+ :host([hidden]) {
+ display: none !important;
+ }
+
#main-container {
background: #fff;
border-color: rgba(0, 0, 0, 0.14);
@@ -143,15 +147,17 @@
}
</style>
<div id="main-container">
- <div id="date-accessed">[[historyDate]]</div>
+ <div id="date-accessed">
+ {{listTitle_(numberOfItems, historyDate, searchTerm)}}
+ </div>
<div id="item-container">
<paper-checkbox id="checkbox" on-tap="onCheckboxSelected_"
checked="{{selected}}" disabled="[[selectionNotAllowed_()]]">
</paper-checkbox>
- <span id="time">{{timeAccessed}}</span>
+ <span id="time">{{visibleTimestamp}}</span>
<div id="website-icon"></div>
<div id="titleAndDomain">
- <a href$="{{websiteUrl}}" id="title">{{websiteTitle}}</a>
+ <a href$="{{websiteUrl}}" id="title"></a>
<span id="domain">{{websiteDomain}}</span>
</div>
<iron-icon icon="star" id="bookmark"></iron-icon>
« no previous file with comments | « chrome/browser/resources/md_history/history.js ('k') | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698