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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/treeoutline.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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css ('k') | 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/treeoutline.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css b/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css
index 5b1dab391ab8cfd93529ab5116052ae229306902..942ca4aa8f4e2df37833d3307b9f623db004338f 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css
@@ -104,8 +104,8 @@ ol.tree-outline:focus li.selected * {
.tree-outline li::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;
@@ -119,17 +119,17 @@ ol.tree-outline:focus li.selected * {
@media (-webkit-min-device-pixel-ratio: 1.1) {
.tree-outline li::before {
- -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
+ -webkit-mask-image: url(Images/treeoutlineTriangles_2x.png);
}
} /* media */
.tree-outline li::before {
- -webkit-mask-position: -4px -96px;
+ -webkit-mask-position: 0 0;
background-color: rgb(110, 110, 110);
}
.tree-outline li.parent.expanded::before {
- -webkit-mask-position: -20px -96px;
+ -webkit-mask-position: -16px 0;
}
.tree-outline ol.children {
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698