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

Side by Side Diff: Source/devtools/front_end/security/lockIcon.css

Issue 1215493002: Add a sidebar to the DevTools Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix lock icon in tree. Created 5 years, 5 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
(Empty)
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 .lock-icon {
7 background-size: cover;
8 height: 16px;
9 width: 16px;
10 }
11
12 .lock-icon-unknown {
13 background-image: url(Images/securityStateHttp.png);
14 }
15
16 .lock-icon-http {
17 background-image: url(Images/securityStateHttp.png);
18 }
19
20 .lock-icon-insecure {
21 background-image: url(Images/securityStateInsecure.png);
22 }
23
24 .lock-icon-warning {
25 background-image: url(Images/securityStateWarning.png);
26 }
27
28 .lock-icon-secure {
29 background-image: url(Images/securityStateSecure.png);
30 }
31
32
33 @media (-webkit-min-device-pixel-ratio: 1.5) {
34 .lock-icon-unknown {
35 background-image: url(Images/securityStateHttp_2x.png);
36 }
37
38 .lock-icon-http {
39 background-image: url(Images/securityStateHttp_2x.png);
40 }
41
42 .lock-icon-insecure {
43 background-image: url(Images/securityStateInsecure_2x.png);
44 }
45
46 .lock-icon-warning {
47 background-image: url(Images/securityStateWarning_2x.png);
48 }
49
50 .lock-icon-secure {
51 background-image: url(Images/securityStateSecure_2x.png);
52 }
53 }
54
55 .sidebar-tree-item .lock-icon {
56 float: left;
57 margin-right: 2px;
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698