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

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

Issue 1301833003: Add origin views to the Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Mark securityState as explicitly optional in OriginState. Created 5 years, 4 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 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 .lock-icon { 6 .lock-icon,
7 .security-property {
7 background-size: cover; 8 background-size: cover;
8 height: 16px; 9 height: 16px;
9 width: 16px; 10 width: 16px;
10 } 11 }
11 12
12 .lock-icon-unknown { 13 .lock-icon-unknown {
13 background-image: url(Images/securityStateNeutral.png); 14 background-image: url(Images/securityStateNeutral.png);
14 } 15 }
15 16
16 .lock-icon-neutral { 17 .lock-icon-neutral {
(...skipping 28 matching lines...) Expand all
45 46
46 .lock-icon-warning { 47 .lock-icon-warning {
47 background-image: url(Images/securityStateWarning_2x.png); 48 background-image: url(Images/securityStateWarning_2x.png);
48 } 49 }
49 50
50 .lock-icon-secure { 51 .lock-icon-secure {
51 background-image: url(Images/securityStateSecure_2x.png); 52 background-image: url(Images/securityStateSecure_2x.png);
52 } 53 }
53 } 54 }
54 55
55 .sidebar-tree-item .lock-icon { 56 .security-property-insecure {
56 float: left; 57 background-image: url(Images/securityPropertyInsecure.svg);
57 margin-right: 2px; 58 }
58 } 59
60 .security-property-neutral {
61 background-image: url(Images/securityPropertyWarning.svg);
62 }
63
64 .security-property-warning {
65 background-image: url(Images/securityPropertyWarning.svg);
66 }
67
68 .security-property-secure {
69 background-image: url(Images/securityPropertySecure.svg);
70 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/security/SecurityPanel.js ('k') | Source/devtools/front_end/security/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698