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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css

Issue 2442843003: DevTools: Use dark blue for selected item in SuggestBox (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css b/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
index f70238d3db066fca2d8318aa97ca396d8c8bd3f0..fd631186e5e828180d3877afeb8c083c3835033e 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css
@@ -90,22 +90,27 @@
display: inline-block;
content: "";
-webkit-user-select: none;
- background-image: url(Images/smallIcons.png);
- background-size: 190px 30px;
+ -webkit-mask-image: url(Images/smallIcons.png);
+ -webkit-mask-size: 190px 30px;
width: 10px;
height: 10px;
position: relative;
top: 2px;
margin-right: 4px;
- background-position: -20px -20px;
+ -webkit-mask-position: -20px -20px;
+ background-color: rgb(56, 121, 217);
}
@media (-webkit-min-device-pixel-ratio: 1.1) {
.suggest-box .suggest-box-content-item.additional::before {
- background-image: url(Images/smallIcons_2x.png);
+ -webkit-mask-image: url(Images/smallIcons_2x.png);
}
} /* media */
+.suggest-box .suggest-box-content-item.additional.selected::before {
+ background-color: #FFF;
+}
+
.suggest-box .suggest-box-content-item .prefix {
font-weight: bold;
}
@@ -116,11 +121,12 @@
}
.suggest-box .suggest-box-content-item.selected {
- background-color: rgba(56, 121, 217, 0.1);
+ background-color: rgb(56, 121, 217);
+ color: #FFF;
}
.suggest-box .suggest-box-content-item:hover:not(.selected) {
- border: 1px solid rgb(204, 204, 204);
+ background-color: rgba(56, 121, 217, 0.1);
}
.suggest-box .details-popup {
« 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