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

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

Issue 1159163005: Add a minimal Security panel to DevTools (behind a hidden experiment). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address final comments. Created 5 years, 6 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
« no previous file with comments | « Source/devtools/front_end/security/module.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .security.panel {
7 margin: 1em;
8 }
9
10 .security.panel .lock-icon,
11 .security.panel .security-state {
12 display: inline-block;
13 margin: 0.2em;
14 vertical-align: middle;
15 }
16
17 .security.panel .lock-icon {
18 width: 16px;
19 height: 16px;
20 border-radius: 2px;
21 background-size: cover;
22 }
23
24 .security.panel .lock-icon-unknown {
25 background-image: url(Images/securityStateHttp.png);
26 }
27
28 .security.panel .lock-icon-http {
29 background-image: url(Images/securityStateHttp.png);
30 }
31
32 .security.panel .lock-icon-insecure {
33 background-image: url(Images/securityStateInsecure.png);
34 }
35
36 .security.panel .lock-icon-warning {
37 background-image: url(Images/securityStateWarning.png);
38 }
39
40 .security.panel .lock-icon-secure {
41 background-image: url(Images/securityStateSecure.png);
42 }
43
44
45 @media (-webkit-min-device-pixel-ratio: 1.5) {
46 .security.panel .lock-icon-unknown {
47 background-image: url(Images/securityStateHttp_2x.png);
48 }
49
50 .security.panel .lock-icon-http {
51 background-image: url(Images/securityStateHttp_2x.png);
52 }
53
54 .security.panel .lock-icon-insecure {
55 background-image: url(Images/securityStateInsecure_2x.png);
56 }
57
58 .security.panel .lock-icon-warning {
59 background-image: url(Images/securityStateWarning_2x.png);
60 }
61
62 .security.panel .lock-icon-secure {
63 background-image: url(Images/securityStateSecure_2x.png);
64 }
65 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/security/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698