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

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

Issue 1327593003: DevTools: [security] open certificate viewer from devtools security overview (blink) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: typo fixed too Created 5 years, 3 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 | Annotate | Revision Log
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-main-view { 6 .security-main-view {
7 -webkit-user-select: text; 7 -webkit-user-select: text;
8 } 8 }
9 9
10 .security-main-view .security-section { 10 .security-main-view .security-section {
11 padding: 1em; 11 padding: 1em;
12 border-bottom: 1px solid rgb(230, 230, 230); 12 border-bottom: 1px solid rgb(230, 230, 230);
13 13
14 display: flex; 14 display: flex;
15 white-space: nowrap; 15 white-space: nowrap;
16 } 16 }
17 17
18 .security-main-view .security-summary .lock-icon { 18 .security-main-view .security-summary .lock-icon {
19 flex: none; 19 flex: none;
20 width: 32px; 20 width: 32px;
21 height: 32px; 21 height: 32px;
22 margin-right: 1em; 22 margin-right: 1em;
23 } 23 }
24 24
25 .security-main-view .security-section-text { 25 .security-main-view .security-section-text {
26 flex: auto; 26 flex: auto;
27 white-space: normal; 27 white-space: normal;
28 } 28 }
29 29
30 .security-certificate-id {
31 margin-top: 8px;
32 }
33
30 .security-main-view .security-summary-section-title { 34 .security-main-view .security-summary-section-title {
31 font-size: 14px; 35 font-size: 14px;
32 margin-bottom: 2px; 36 margin-bottom: 2px;
33 } 37 }
34 38
35 .security-main-view .security-explanation.security-state-secure { 39 .security-main-view .security-explanation.security-state-secure {
36 color: rgb(42, 194, 57); 40 color: rgb(42, 194, 57);
37 } 41 }
38 42
39 .security-main-view .security-explanation.security-state-neutral { 43 .security-main-view .security-explanation.security-state-neutral {
40 color: rgb(253, 177, 48); 44 color: rgb(253, 177, 48);
41 } 45 }
42 46
43 .security-main-view .security-explanation.security-state-insecure { 47 .security-main-view .security-explanation.security-state-insecure {
44 color: rgb(216, 71, 60); 48 color: rgb(216, 71, 60);
45 } 49 }
46 50
47 .security-main-view .security-explanation.security-section .lock-icon { 51 .security-main-view .security-explanation.security-section .lock-icon {
48 flex: none; 52 flex: none;
49 width: 16px; 53 width: 16px;
50 height: 16px; 54 height: 16px;
51 margin-left: 10px; 55 margin-left: 10px;
52 margin-right: 18px; 56 margin-right: 18px;
53 } 57 }
54 58
55 .security-main-view .security-section-title { 59 .security-main-view .security-section-title {
56 color: rgb(90, 90, 90); 60 color: rgb(90, 90, 90);
57 margin-bottom: 8px; 61 margin-bottom: 8px;
58 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698