| 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 0c0a9710ae5c97ada4a46ebee9cdbfca55a84236..1089636bc3ca52a0a38bd76bbcafee8bfb77df2f 100644
|
| --- a/chrome/browser/resources/md_history/history_item.html
|
| +++ b/chrome/browser/resources/md_history/history_item.html
|
| @@ -22,7 +22,6 @@
|
| :host(:not([embedded])) #main-container {
|
| background: #fff;
|
| border-color: var(--card-border-color);
|
| - border-radius: 2px;
|
| border-style: solid;
|
| border-width: 0 1px;
|
| }
|
| @@ -36,14 +35,20 @@
|
| }
|
|
|
| :host([is-card-start]) #main-container {
|
| + border-radius: 2px 2px 0 0;
|
| border-top-width: 1px;
|
| }
|
|
|
| :host([is-card-end]) #main-container {
|
| border-bottom-width: 2px;
|
| + border-radius: 0 0 2px 2px;
|
| margin-bottom: var(--card-padding-between);
|
| }
|
|
|
| + :host([is-card-start][is-card-end]) #main-container {
|
| + border-radius: 2px;
|
| + }
|
| +
|
| #date-accessed {
|
| display: none;
|
| }
|
|
|