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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css

Issue 2661893002: DevTools: extract treeoutline triangle icons from toolbarButtonGlyphs.png (Closed)
Patch Set: rebaseline Created 3 years, 11 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: third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css b/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
index 16fad38002ea4846a014bba1fe1301fd921691de..72a14ef848a25fb16276355a2f3667771efdfe60 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
+++ b/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
@@ -47,8 +47,8 @@
.elements-disclosure li.parent::before {
-webkit-user-select: none;
- -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
- -webkit-mask-size: 352px 168px;
+ -webkit-mask-image: url(Images/treeoutlineTriangles.png);
+ -webkit-mask-size: 32px 24px;
content: "aa";
color: transparent;
text-shadow: none;
@@ -61,12 +61,12 @@
@media (-webkit-min-device-pixel-ratio: 1.1) {
.elements-disclosure li.parent::before {
- -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
+ -webkit-mask-image: url(Images/treeoutlineTriangles_2x.png);
}
} /* media */
.elements-disclosure li.parent::before {
- -webkit-mask-position: -4px -96px;
+ -webkit-mask-position: 0 0;
background-color: rgb(110, 110, 110);
}
@@ -84,7 +84,7 @@
}
.elements-disclosure li.parent.expanded::before {
- -webkit-mask-position: -20px -96px;
+ -webkit-mask-position: -16px 0;
}
.elements-disclosure li.selected .selection {

Powered by Google App Engine
This is Rietveld 408576698