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

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: Addressed latest comments. (The linter is happy now!) 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
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-image: url(Images/securityStateHttp.png);
dgozman 2015/06/16 19:43:36 Remove this one, as we discussed.
22 background-size: cover;
23 }
24
25 .security.panel .lock-icon-unknown {
26 background-image: url(Images/securityStateHttp.png);
27 }
28
29 .security.panel .lock-icon-http {
30 background-image: url(Images/securityStateHttp.png);
31 }
32
33 .security.panel .lock-icon-insecure {
34 background-image: url(Images/securityStateInsecure.png);
35 }
36
37 .security.panel .lock-icon-warning {
38 background-image: url(Images/securityStateWarning.png);
39 }
40
41 .security.panel .lock-icon-secure {
42 background-image: url(Images/securityStateSecure.png);
43 }
44
45
46 @media (-webkit-min-device-pixel-ratio: 1.5) {
47 .security.panel .lock-icon-unknown {
48 background-image: url(Images/securityStateHttp_2x.png);
49 }
50
51 .security.panel .lock-icon-http {
52 background-image: url(Images/securityStateHttp_2x.png);
53 }
54
55 .security.panel .lock-icon-insecure {
56 background-image: url(Images/securityStateInsecure_2x.png);
57 }
58
59 .security.panel .lock-icon-warning {
60 background-image: url(Images/securityStateWarning_2x.png);
61 }
62
63 .security.panel .lock-icon-secure {
64 background-image: url(Images/securityStateSecure_2x.png);
65 }
66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698