OLD | NEW |
---|---|
(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 .section { | |
dgozman
2015/08/26 20:28:41
Let's use more specific classes to simplify search
lgarron
2015/08/26 21:42:43
Done.
| |
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 .summary.section .lock-icon { | |
19 flex: none; | |
20 width: 32px; | |
21 height: 32px; | |
22 margin-right: 1em; | |
23 } | |
24 | |
25 .security-main-view .summary.section .text .title { | |
26 font-size: 14px; | |
27 margin-bottom: 2px; | |
28 } | |
29 | |
30 .security-main-view .summary.section .explanation.security-state-secure { | |
31 color: rgb(42, 194, 57); | |
32 } | |
33 | |
34 .security-main-view .summary.section .explanation.security-state-neutral { | |
35 color: rgb(253, 177, 48); | |
36 } | |
37 | |
38 .security-main-view .summary.section .explanation.security-state-insecure { | |
39 color: rgb(216, 71, 60); | |
40 } | |
41 | |
42 .security-main-view .explanation.section .lock-icon { | |
43 flex: none; | |
44 width: 16px; | |
45 height: 16px; | |
46 margin-left: 10px; | |
47 margin-right: 18px; | |
48 } | |
49 | |
50 .security-main-view .section .text { | |
51 flex: auto; | |
52 white-space: normal; | |
53 } | |
54 | |
55 .security-main-view .explanation.section .text .title { | |
56 color: rgb(90, 90, 90); | |
57 margin-bottom: 8px; | |
58 } | |
OLD | NEW |