OLD | NEW |
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-origin-view { | 6 .security-origin-view { |
7 overflow-x: hidden; | 7 overflow-x: hidden; |
8 overflow-y: scroll; | 8 overflow-y: scroll; |
9 display: block; | 9 display: block; |
10 -webkit-user-select: text; | 10 -webkit-user-select: text; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 overflow: hidden; | 48 overflow: hidden; |
49 margin-top: 6px; | 49 margin-top: 6px; |
50 } | 50 } |
51 | 51 |
52 .security-origin-view .details-table-row > div { | 52 .security-origin-view .details-table-row > div { |
53 align-items: flex-start; | 53 align-items: flex-start; |
54 } | 54 } |
55 | 55 |
56 .security-origin-view .details-table-row > div:first-child { | 56 .security-origin-view .details-table-row > div:first-child { |
57 color: rgb(140, 140, 140); | 57 color: rgb(140, 140, 140); |
58 width: 7em; | 58 width: 8em; |
59 margin-right: 1em; | 59 margin-right: 1em; |
60 flex: none; | 60 flex: none; |
61 display: flex; | 61 display: flex; |
62 justify-content: flex-end; | 62 justify-content: flex-end; |
63 } | 63 } |
64 .security-origin-view .details-table-row > div:nth-child(2) { | 64 .security-origin-view .details-table-row > div:nth-child(2) { |
65 flex: auto; | 65 flex: auto; |
66 white-space: normal; | 66 white-space: normal; |
67 } | 67 } |
68 | 68 |
| 69 .security-origin-view .sct-details .details-table .details-table-row:last-child
div:last-child { |
| 70 border-bottom: 1px solid rgb(230, 230, 230); |
| 71 padding-bottom: 10px; |
| 72 } |
| 73 |
| 74 .security-origin-view .sct-details .details-table:last-child .details-table-row:
last-child div:last-child { |
| 75 border-bottom: none; |
| 76 padding-bottom: 0; |
| 77 } |
| 78 |
| 79 .security-origin-view .sct-toggle { |
| 80 padding-left: 9.2em; |
| 81 padding-top: 5px; |
| 82 } |
| 83 |
69 .security-origin-view .details-table .empty-san { | 84 .security-origin-view .details-table .empty-san { |
70 color: rgb(140, 140, 140); | 85 color: rgb(140, 140, 140); |
71 } | 86 } |
72 | 87 |
73 .security-origin-view .details-table .san-entry { | 88 .security-origin-view .details-table .san-entry { |
74 display: block; | 89 display: block; |
75 } | 90 } |
76 | 91 |
77 .security-origin-view .truncated-san .truncated-entry { | 92 .security-origin-view .truncated-san .truncated-entry { |
78 display: none; | 93 display: none; |
79 } | 94 } |
80 | 95 |
81 .security-certificate-button { | 96 .security-certificate-button { |
82 margin-top: 4px; | 97 margin-top: 4px; |
83 } | 98 } |
OLD | NEW |