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

Side by Side Diff: Source/devtools/front_end/ui/smallIcon.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 (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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 div { 7 div {
8 width: 10px; 8 width: 10px;
9 height: 10px; 9 height: 10px;
10 margin-right: 2px; 10 margin-right: 2px;
11 display: inline-block; 11 display: inline-block;
12 } 12 }
13 13
14 div.error-icon, 14 div.error-icon,
15 div.warning-icon, 15 div.warning-icon,
16 div.info-icon,
16 div.device-icon, 17 div.device-icon,
17 div.red-ball, 18 div.red-ball,
18 div.green-ball, 19 div.green-ball,
19 div.orange-ball { 20 div.orange-ball {
20 background-image: url(Images/statusbarButtonGlyphs.png); 21 background-image: url(Images/statusbarButtonGlyphs.png);
21 background-size: 320px 144px; 22 background-size: 320px 144px;
22 } 23 }
23 24
24 @media (-webkit-min-device-pixel-ratio: 1.5) { 25 @media (-webkit-min-device-pixel-ratio: 1.5) {
25 div.error-icon, 26 div.error-icon,
26 div.warning-icon, 27 div.warning-icon,
28 div.info-icon,
27 div.device-icon, 29 div.device-icon,
28 div.red-ball, 30 div.red-ball,
29 div.green-ball, 31 div.green-ball,
30 div.orange-ball { 32 div.orange-ball {
31 background-image: url(Images/statusbarButtonGlyphs_2x.png); 33 background-image: url(Images/statusbarButtonGlyphs_2x.png);
32 } 34 }
33 } /* media */ 35 } /* media */
34 36
35 div.error-icon { 37 div.error-icon {
36 background-position: -213px -96px; 38 background-position: -213px -96px;
37 } 39 }
38 40
39 div.warning-icon { 41 div.warning-icon {
40 background-position: -202px -107px; 42 background-position: -202px -107px;
41 } 43 }
42 44
45 div.info-icon {
46 background-position: -213px -107px;
47 }
48
43 div.device-icon { 49 div.device-icon {
44 background-position: -224px -107px; 50 background-position: -224px -107px;
45 } 51 }
46 52
47 div.red-ball { 53 div.red-ball {
48 background-position: -224px -96px; 54 background-position: -224px -96px;
49 } 55 }
50 56
51 div.green-ball { 57 div.green-ball {
52 background-position: -235px -96px; 58 background-position: -235px -96px;
53 } 59 }
54 60
55 div.orange-ball { 61 div.orange-ball {
56 background-position: -246px -96px; 62 background-position: -246px -96px;
57 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698