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

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

Issue 2206873002: [MD History] Fix border radius on history items. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | no next file » | 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 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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698