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

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

Issue 2768923006: DevTools: define icon location with row and column (Closed)
Patch Set: add coordinates to svg files Created 3 years, 9 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/ui/Icon.js ('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/inspectorCommon.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css b/third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css
index 64a7b5d0f95d65b3dae4931cb81d632f732797cf..de3b2591229063bf884fc30dbd49241dcff33903 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css
@@ -339,56 +339,46 @@ label[is=dt-icon-label] {
.spritesheet-smallicons:not(.icon-mask) {
background-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Images/smallIcons_2x.png) 2x);
- background-size: 90px 90px;
}
.spritesheet-smallicons.icon-mask {
-webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Images/smallIcons_2x.png) 2x);
- -webkit-mask-size: 90px 90px;
}
.spritesheet-largeicons:not(.icon-mask) {
background-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Images/largeIcons_2x.png) 2x);
- background-size: 224px 216px;
}
.spritesheet-largeicons.icon-mask {
-webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Images/largeIcons_2x.png) 2x);
- -webkit-mask-size: 224px 216px;
}
.spritesheet-mediumicons:not(.icon-mask) {
background-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Images/mediumIcons_2x.png) 2x);
- background-size: 64px 64px;
}
.spritesheet-mediumicons.icon-mask {
-webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Images/mediumIcons_2x.png) 2x);
- -webkit-mask-size: 64px 64px;
}
.spritesheet-arrowicons {
background-image: url(Images/popoverArrows.png);
- background-size: 19px 76px;
}
.force-white-icons [is=ui-icon].spritesheet-smallicons, [is=ui-icon].force-white-icons.spritesheet-smallicons {
-webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Images/smallIcons_2x.png) 2x);
- -webkit-mask-size: 90px 90px;
-webkit-mask-position: var(--spritesheet-position);
background: white !important;
}
.force-white-icons [is=ui-icon].spritesheet-largeicons, [is=ui-icon].force-white-icons.spritesheet-largeicons {
-webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Images/largeIcons_2x.png) 2x);
- -webkit-mask-size: 224px 216px;
-webkit-mask-position: var(--spritesheet-position);
background: white !important;
}
.force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-white-icons.spritesheet-mediumicons {
-webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Images/mediumIcons_2x.png) 2x);
- -webkit-mask-size: 64px 64px;
-webkit-mask-position: var(--spritesheet-position);
background: white !important;
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/Icon.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698