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

Unified Diff: Source/devtools/front_end/sources/uiList.css

Issue 1177553002: DevTools: follow up to r196782 with minor UI fixed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « Source/devtools/front_end/sidebarPane.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sources/uiList.css
diff --git a/Source/devtools/front_end/sources/uiList.css b/Source/devtools/front_end/sources/uiList.css
index 90cecca1358240956c956a2b63d96070fb2df9bd..bab2a8f88f95861ad655462cb63ea0901f008170 100644
--- a/Source/devtools/front_end/sources/uiList.css
+++ b/Source/devtools/front_end/sources/uiList.css
@@ -11,17 +11,20 @@
white-space: nowrap;
}
-.list-item:hover {
- background-color: #eee;
+.list-item:nth-of-type(2n) {
+ background-color: #f8f8f8;
}
-.list-item > .title::before {
- content: "\2713 ";
- color: transparent;
+.list-item.selected {
+ background-color: rgb(212, 212, 212);
}
-.list-item.selected > .title::before {
- color: inherit;
+.list-item.selected > .title {
+ font-weight: bold;
+}
+
+.list-item:hover {
+ background-color: #eee;
}
.list-item > .title {
@@ -30,10 +33,6 @@
white-space: normal;
}
-.list-item.selected > .title {
- font-weight: bold;
-}
-
.list-item > .subtitle {
margin-left: 5px;
color: rgba(0, 0, 0, 0.7);
« no previous file with comments | « Source/devtools/front_end/sidebarPane.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698