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

Unified Diff: third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.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/data_grid/dataGrid.css
diff --git a/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css b/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
index 396fc410f650d7bd4f843a3762f845d1f9fa8371..ba1686005b0c479a9afb4fa1e675a835be96c37e 100644
--- a/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
+++ b/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
@@ -175,9 +175,9 @@
.data-grid td.disclosure::before {
-webkit-user-select: none;
- -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
- -webkit-mask-position: -4px -96px;
- -webkit-mask-size: 352px 168px;
+ -webkit-mask-image: url(Images/treeoutlineTriangles.png);
+ -webkit-mask-position: 0 0;
+ -webkit-mask-size: 32px 24px;
float: left;
width: 8px;
height: 12px;
@@ -194,12 +194,12 @@
@media (-webkit-min-device-pixel-ratio: 1.1) {
.data-grid tr.parent td.disclosure::before {
- -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
+ -webkit-mask-image: url(Images/treeoutlineTriangles_2x.png);
}
} /* media */
.data-grid tr.expanded td.disclosure::before {
- -webkit-mask-position: -20px -96px;
+ -webkit-mask-position: -16px 0;
}
.data-grid tr.selected {
@@ -218,12 +218,12 @@
.data-grid:focus tr.parent.selected td.disclosure::before {
background-color: white;
- -webkit-mask-position: -4px -96px;
+ -webkit-mask-position: 0 0;
}
.data-grid:focus tr.expanded.selected td.disclosure::before {
background-color: white;
- -webkit-mask-position: -20px -96px;
+ -webkit-mask-position: -16px 0;
}
.data-grid tr.inactive {

Powered by Google App Engine
This is Rietveld 408576698