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

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

Issue 1179353002: Surface lock icon explanations in the DevTools Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address nits. 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/SecurityPanel.js ('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
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 .security.panel { 6 .security.panel {
7 margin: 1em; 7 margin: 1em;
8 } 8 }
9 9
10 .security.panel .lock-icon, 10 .security.panel .lock-icon,
11 .security.panel .security-state { 11 .security.panel .security-state {
12 display: inline-block; 12 display: inline-block;
13 margin: 0.2em; 13 margin: 0.2em;
14 vertical-align: middle; 14 vertical-align: middle;
15 } 15 }
16 16
17 .security.panel .security-state {
18 font-weight: bold;
19 font-size: 1.2em;
20 }
21
17 .security.panel .lock-icon { 22 .security.panel .lock-icon {
18 width: 16px; 23 width: 16px;
19 height: 16px; 24 height: 16px;
20 border-radius: 2px; 25 border-radius: 2px;
21 background-size: cover; 26 background-size: cover;
22 } 27 }
23 28
24 .security.panel .lock-icon-unknown { 29 .security.panel .lock-icon-unknown {
25 background-image: url(Images/securityStateHttp.png); 30 background-image: url(Images/securityStateHttp.png);
26 } 31 }
(...skipping 29 matching lines...) Expand all
56 } 61 }
57 62
58 .security.panel .lock-icon-warning { 63 .security.panel .lock-icon-warning {
59 background-image: url(Images/securityStateWarning_2x.png); 64 background-image: url(Images/securityStateWarning_2x.png);
60 } 65 }
61 66
62 .security.panel .lock-icon-secure { 67 .security.panel .lock-icon-secure {
63 background-image: url(Images/securityStateSecure_2x.png); 68 background-image: url(Images/securityStateSecure_2x.png);
64 } 69 }
65 } 70 }
71
72 .security.panel .security-explanation {
73 margin: 16px 0px;
74 }
75
76 .security.panel .security-explanation .lock-icon {
77 display: inline-block;
78 vertical-align: bottom;
79 }
80
81 .security.panel .security-explanation .explanation-title {
82 display: inline-block;
83 font-weight: bold;
84 font-size: 1.2em;
85 margin-left: 4px;
86 }
87
88 .security.panel .security-explanation .explanation-text {
89 margin: 4px 0px;
90 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/security/SecurityPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698