| 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 1089636bc3ca52a0a38bd76bbcafee8bfb77df2f..9eb244dd31eb6237eb5f5312c6050b04cbd2878d 100644
|
| --- a/chrome/browser/resources/md_history/history_item.html
|
| +++ b/chrome/browser/resources/md_history/history_item.html
|
| @@ -20,10 +20,7 @@
|
| }
|
|
|
| :host(:not([embedded])) #main-container {
|
| - background: #fff;
|
| - border-color: var(--card-border-color);
|
| - border-style: solid;
|
| - border-width: 0 1px;
|
| + position: relative;
|
| }
|
|
|
| :host(:not([embedded])) #sizing-container {
|
| @@ -36,11 +33,9 @@
|
|
|
| :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);
|
| }
|
| @@ -136,10 +131,25 @@
|
| -webkit-margin-start: 77px;
|
| height: 15px;
|
| }
|
| +
|
| + #background {
|
| + background: #fff;
|
| + bottom: -1px; /* Prevents shadow artifacts when zoomed */
|
| + left: 0;
|
| + position: absolute;
|
| + right: 0;
|
| + top: 0;
|
| + z-index: -1;
|
| + }
|
| +
|
| + :host([is-card-end]) #background {
|
| + bottom: 0;
|
| + }
|
| </style>
|
|
|
| <div id="sizing-container">
|
| <div id="main-container">
|
| + <div id="background"></div>
|
| <div id="date-accessed" class="card-title">
|
| [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]]
|
| </div>
|
|
|