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

Unified Diff: Source/devtools/front_end/resources/serviceWorkersView.css

Issue 1048763002: [DevTools] Show LastModified and ResponseTime of ServiceWorker script in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: use WebInspector.UIString Created 5 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
Index: Source/devtools/front_end/resources/serviceWorkersView.css
diff --git a/Source/devtools/front_end/resources/serviceWorkersView.css b/Source/devtools/front_end/resources/serviceWorkersView.css
index 3fefbd9b2a87c1ff9f3012399a39d15f939e8568..6ef9bead512e061fe23427c652fde9f877ff2504 100644
--- a/Source/devtools/front_end/resources/serviceWorkersView.css
+++ b/Source/devtools/front_end/resources/serviceWorkersView.css
@@ -187,10 +187,10 @@
opacity: 0.8;
}
-.service-workers-error-icon {
+.service-workers-error-icon,
dgozman 2015/03/30 12:54:23 Instead of these styles, just use custom element "
horo 2015/03/30 15:05:40 Done.
+.service-workers-info-icon {
background-image: url(Images/statusbarButtonGlyphs.png);
background-size: 320px 144px;
- background-position: -213px -96px;
height: 10px;
width: 10px;
border: 0;
@@ -200,11 +200,21 @@
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
-.service-workers-error-icon {
+.service-workers-error-icon,
+.service-workers-info-icon {
background-image: url(Images/statusbarButtonGlyphs_2x.png);
}
} /* media */
+
+.service-workers-error-icon {
+ background-position: -213px -96px;
+}
+
+.service-workers-info-icon {
+ background-position: -213px -107px;
+}
+
.service-workers-error {
display: flex;
}
@@ -213,6 +223,10 @@
font-weight: bold;
}
+.service-workers-info {
+ display: flex;
+}
+
.service-workers-color-0 {
background-color: #003366;
}

Powered by Google App Engine
This is Rietveld 408576698