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

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

Issue 1316853002: Organize security panel main view. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove experiment toggle. 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
OLDNEW
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 .security-main-view {
7 -webkit-user-select: text;
8 }
9
10 .security-main-view .security-section {
11 padding: 1em;
12 border-bottom: 1px solid rgb(230, 230, 230);
13
14 display: flex;
15 white-space: nowrap;
16 }
17
18 .security-main-view .security-summary .lock-icon {
19 flex: none;
20 width: 32px;
21 height: 32px;
22 margin-right: 1em;
23 }
24
25 .security-main-view .security-section-text {
26 flex: auto;
27 white-space: normal;
28 }
29
30 .security-main-view .security-summary-section-title {
31 font-size: 14px;
32 margin-bottom: 2px;
33 }
34
35 .security-main-view .security-explanation.security-state-secure {
36 color: rgb(42, 194, 57);
37 }
38
39 .security-main-view .security-explanation.security-state-neutral {
40 color: rgb(253, 177, 48);
41 }
42
43 .security-main-view .security-explanation.security-state-insecure {
44 color: rgb(216, 71, 60);
45 }
46
47 .security-main-view .security-explanation.security-section .lock-icon {
48 flex: none;
49 width: 16px;
50 height: 16px;
51 margin-left: 10px;
52 margin-right: 18px;
53 }
54
55 .security-main-view .security-section-title {
56 color: rgb(90, 90, 90);
57 margin-bottom: 8px;
58 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/security/lockIcon.css ('k') | Source/devtools/front_end/security/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698