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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css

Issue 2570783006: DevTools: convert a few more icons to UI.Icon. (Closed)
Patch Set: Created 4 years 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/network/blockedURLsPane.css
diff --git a/third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css b/third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css
index 280be41f242a43ee7ca7099fc9f966128ec4e5ec..0e20e389ca5422a34c06063aab06e7e1751c92be 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css
+++ b/third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css
@@ -63,28 +63,15 @@
margin-right: 5px;
}
-.blocked-url .remove-button {
- width: 13px;
- height: 13px;
- background-image: url(Images/toolbarButtonGlyphs.png);
- background-size: 352px 168px;
- background-position: -175px -96px;
- visibility: hidden;
- flex: none;
+.remove-icon {
opacity: 0.7;
- cursor: default;
+ visibility: hidden;
}
-@media (-webkit-min-device-pixel-ratio: 1.1) {
-.blocked-url .remove-button {
- background-image: url(Images/toolbarButtonGlyphs_2x.png);
+.blocked-url .remove-icon:hover {
+ opacity: 1.0;
}
-} /* media */
-.blocked-url:hover .remove-button {
+.blocked-url:hover .remove-icon {
visibility: visible;
}
-
-.blocked-url .remove-button:hover {
- opacity: 1.0;
-}

Powered by Google App Engine
This is Rietveld 408576698