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

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

Issue 1215493002: Add a sidebar to the DevTools Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename SecuritySidebarMainViewTreeElement to SecurityMainViewSidebarTreeElement (more idiomatic). 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 .security-main-view {
dgozman 2015/06/26 10:50:49 You can omit .security.panel where you have .secur
lgarron 2015/06/26 16:33:31 Done. I've also removed .security-main-view befor
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-main-view .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 { 17 .security.panel .security-main-view .security-state {
18 font-weight: bold; 18 font-weight: bold;
19 font-size: 1.2em; 19 font-size: 1.2em;
20 } 20 }
21 21
22 .security.panel .lock-icon { 22 .security.panel .lock-icon {
23 width: 16px; 23 width: 16px;
24 height: 16px; 24 height: 16px;
25 border-radius: 2px; 25 border-radius: 2px;
26 background-size: cover; 26 background-size: cover;
27 } 27 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 .security.panel .lock-icon-warning { 63 .security.panel .lock-icon-warning {
64 background-image: url(Images/securityStateWarning_2x.png); 64 background-image: url(Images/securityStateWarning_2x.png);
65 } 65 }
66 66
67 .security.panel .lock-icon-secure { 67 .security.panel .lock-icon-secure {
68 background-image: url(Images/securityStateSecure_2x.png); 68 background-image: url(Images/securityStateSecure_2x.png);
69 } 69 }
70 } 70 }
71 71
72 .security.panel .security-explanation { 72 .security.panel .security-main-view .security-explanation {
73 margin: 16px 0px; 73 margin: 16px 0px;
74 } 74 }
75 75
76 .security.panel .security-explanation .lock-icon { 76 .security.panel .security-main-view .security-explanation .lock-icon {
77 display: inline-block; 77 display: inline-block;
78 vertical-align: bottom; 78 vertical-align: bottom;
79 } 79 }
80 80
81 .security.panel .security-explanation .explanation-title { 81 .security.panel .security-main-view .security-explanation .explanation-title {
82 display: inline-block; 82 display: inline-block;
83 font-weight: bold; 83 font-weight: bold;
84 font-size: 1.2em; 84 font-size: 1.2em;
85 margin-left: 4px; 85 margin-left: 4px;
86 } 86 }
87 87
88 .security.panel .security-explanation .explanation-text { 88 .security.panel .security-main-view .security-explanation .explanation-text {
89 margin: 4px 0px; 89 margin: 4px 0px;
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698