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

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: Additional linter annotations. 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
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 .security.panel .security-explanation .lock-icon {
dgozman 2015/06/18 10:50:49 Blank lines between rules.
lgarron 2015/06/18 18:16:18 Done.
76 display: inline-block;
77 vertical-align: bottom;
78 }
79 .security.panel .security-explanation .explanation-title {
80 display: inline-block;
81 font-weight: bold;
82 font-size: 1.2em;
83 margin-left: 4px;
84 }
85 .security.panel .security-explanation .explanation-text {
86 margin: 4px 0px;
87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698