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

Side by Side 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: incorporated dgozman's comment Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .service-workers-view { 7 .service-workers-view {
8 overflow: auto; 8 overflow: auto;
9 } 9 }
10 10
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 } /* media */ 180 } /* media */
181 181
182 .service-workers-button:hover { 182 .service-workers-button:hover {
183 opacity: 1; 183 opacity: 1;
184 } 184 }
185 185
186 .service-workers-button:active { 186 .service-workers-button:active {
187 opacity: 0.8; 187 opacity: 0.8;
188 } 188 }
189 189
190 .service-workers-error-icon {
191 background-image: url(Images/statusbarButtonGlyphs.png);
192 background-size: 320px 144px;
193 background-position: -213px -96px;
194 height: 10px;
195 width: 10px;
196 border: 0;
197 padding: 0;
198 margin: 2px;
199 min-width: 10px;
200 }
201
202 @media (-webkit-min-device-pixel-ratio: 1.5) {
203 .service-workers-error-icon {
204 background-image: url(Images/statusbarButtonGlyphs_2x.png);
205 }
206 } /* media */
207
208 .service-workers-error { 190 .service-workers-error {
209 display: flex; 191 display: flex;
210 } 192 }
211 193
212 .service-workers-error-message { 194 .service-workers-error-message {
213 font-weight: bold; 195 font-weight: bold;
214 } 196 }
215 197
198 .service-workers-info {
199 display: flex;
200 }
201
216 .service-workers-color-0 { 202 .service-workers-color-0 {
217 background-color: #003366; 203 background-color: #003366;
218 } 204 }
219 205
220 .service-workers-color-1 { 206 .service-workers-color-1 {
221 background-color: #663300; 207 background-color: #663300;
222 } 208 }
223 209
224 .service-workers-color-2 { 210 .service-workers-color-2 {
225 background-color: #660066; 211 background-color: #660066;
(...skipping 19 matching lines...) Expand all
245 background-color: #996600; 231 background-color: #996600;
246 } 232 }
247 233
248 .service-workers-color-8 { 234 .service-workers-color-8 {
249 background-color: #9900CC; 235 background-color: #9900CC;
250 } 236 }
251 237
252 .service-workers-color-9 { 238 .service-workers-color-9 {
253 background-color: #336600; 239 background-color: #336600;
254 } 240 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698