| 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>
|
|
|