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

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

Issue 2123683002: MD History: Address design nits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
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 6744333a13ca3c3eb49716b621d0803357145a20..fc6bc00b4fd9cfdf8d3243bb4aec3b0d7d864631 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -24,6 +24,7 @@
#main-container {
background: #fff;
border-color: var(--card-border-color);
+ border-radius: 2px;
border-style: var(--border-style, solid);
border-width: 0 1px;
max-width: var(--card-max-width);
@@ -55,7 +56,7 @@
#item-container {
@apply(--layout-center);
@apply(--layout-horizontal);
- min-height: 40px;
+ min-height: var(--item-height);
}
:host([is-card-start]) #item-container {
@@ -70,14 +71,13 @@
@apply(--layout-center);
@apply(--layout-flex);
@apply(--layout-horizontal);
- min-height: 40px;
overflow: hidden;
}
paper-checkbox {
--paper-checkbox-checked-color: rgb(68, 136, 255);
--paper-checkbox-size: 16px;
- --paper-checkbox-unchecked-color: #969696;
+ --paper-checkbox-unchecked-color: var(--secondary-text-color);
height: 16px;
margin: 0 16px 0 20px;
padding: 2px;
@@ -91,14 +91,14 @@
#domain {
-webkit-margin-start: 16px;
- color: #969696;
+ color: var(--secondary-text-color);
flex-shrink: 0;
}
#menu-button {
-webkit-margin-end: 12px;
-webkit-margin-start: 2px;
- color: #969696;
+ color: var(--secondary-text-color);
height: 36px;
width: 36px;
}
« no previous file with comments | « chrome/browser/resources/md_history/grouped_list.html ('k') | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698