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 .title-section { | 6 .title-section { |
7 padding: 12px 0; | 7 padding: 12px 0; |
8 border-bottom: 1px solid rgb(230, 230, 230); | 8 border-bottom: 1px solid rgb(230, 230, 230); |
9 } | 9 } |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 margin-right: 1em; | 60 margin-right: 1em; |
61 flex: none; | 61 flex: none; |
62 display: flex; | 62 display: flex; |
63 justify-content: flex-end; | 63 justify-content: flex-end; |
64 } | 64 } |
65 .security-origin-view .details-table-row > div:nth-child(2) { | 65 .security-origin-view .details-table-row > div:nth-child(2) { |
66 flex: auto; | 66 flex: auto; |
67 white-space: normal; | 67 white-space: normal; |
68 } | 68 } |
69 | 69 |
| 70 .security-origin-view .sct-details .details-table .details-table-row:last-child
div:last-child { |
| 71 border-bottom: 1px solid rgb(230, 230, 230); |
| 72 padding-bottom: 10px; |
| 73 } |
| 74 |
| 75 .security-origin-view .sct-details .details-table:last-child .details-table-row:
last-child div:last-child { |
| 76 border-bottom: none; |
| 77 padding-bottom: 0; |
| 78 } |
| 79 |
| 80 .security-origin-view .sct-toggle { |
| 81 padding-left: 143px; |
| 82 padding-top: 5px; |
| 83 } |
| 84 |
70 .security-origin-view .details-table .empty-san { | 85 .security-origin-view .details-table .empty-san { |
71 color: rgb(140, 140, 140); | 86 color: rgb(140, 140, 140); |
72 } | 87 } |
73 | 88 |
74 .security-origin-view .details-table .san-entry { | 89 .security-origin-view .details-table .san-entry { |
75 display: block; | 90 display: block; |
76 } | 91 } |
77 | 92 |
78 .security-origin-view .truncated-san .truncated-entry { | 93 .security-origin-view .truncated-san .truncated-entry { |
79 display: none; | 94 display: none; |
80 } | 95 } |
81 | 96 |
82 .security-certificate-button { | 97 .security-certificate-button { |
83 margin-top: 4px; | 98 margin-top: 4px; |
84 } | 99 } |
OLD | NEW |