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

Unified Diff: Source/devtools/front_end/ui/toolbar.css

Issue 1169323004: DevTools: do not respect Chrome theme in DevTools, align toolbar items. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: overflow for tab header fixed. 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/ui/tabbedPane.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/ui/toolbar.css
diff --git a/Source/devtools/front_end/ui/toolbar.css b/Source/devtools/front_end/ui/toolbar.css
index e95167225448ef4e1f6738b5aa11f1294776b827..08b4f03dfbff22a3cc31de48b80f853e4fe1838c 100644
--- a/Source/devtools/front_end/ui/toolbar.css
+++ b/Source/devtools/front_end/ui/toolbar.css
@@ -123,7 +123,9 @@ button.toolbar-item {
width: 32px;
}
-.toolbar-item:hover {
+button.toolbar-item:hover,
+.toolbar-item.checkbox:hover,
+.toolbar-counter:hover {
background-color: rgba(110, 110, 110, 0.1);
}
@@ -209,13 +211,18 @@ select.toolbar-item {
.toolbar-item > .glyph {
-webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
-webkit-mask-size: 352px 144px;
- background-color: rgba(0, 0, 0, 0.75);
- opacity: 0.8;
+ opacity: 0.9;
+ background-color: #595959;
z-index: 1;
width: 32px;
height: 24px;
}
+:host-context(:not(.material)) .toolbar-item > .glyph {
+ position: relative;
+ left: -1px;
+}
+
@media (-webkit-min-device-pixel-ratio: 1.5) {
.toolbar-item > .glyph {
@@ -230,11 +237,7 @@ select.toolbar-item {
.toolbar-counter {
cursor: pointer;
padding: 0 2px;
-}
-
-.toolbar-counter:hover .toolbar-counter-item {
- border-bottom: 1px solid rgb(96, 96, 96);
- margin-bottom: -1px;
+ min-width: 30px;
}
.toolbar-counter-item {
@@ -354,7 +357,7 @@ button.record-toolbar-item.toggled-on .glyph {
background-color: rgb(216, 0, 0) !important;
}
-.record-filmstrip-toolbar-item .glyph {
+.camera-toolbar-item .glyph {
-webkit-mask-position: -96px -24px;
}
@@ -448,7 +451,7 @@ button.record-toolbar-item.toggled-on .glyph {
}
.filter-toolbar-item.toggled-shown {
- background-color: #eee;
+ background-color: #f3f3f3;
}
.filter-toolbar-item.toggled-active .glyph {
@@ -477,7 +480,7 @@ button.record-toolbar-item.toggled-on .glyph {
.pin-toolbar-item.toggled-on,
.animation-toolbar-item.toggled-on {
- background-color: #eee;
+ background-color: #f3f3f3;
}
.animation-toolbar-item .glyph {
« no previous file with comments | « Source/devtools/front_end/ui/tabbedPane.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698