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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 justify-content: flex-end; | 58 justify-content: flex-end; |
59 } | 59 } |
60 .security-origin-view .details-table-row > div:nth-child(2) { | 60 .security-origin-view .details-table-row > div:nth-child(2) { |
61 flex: auto; | 61 flex: auto; |
62 white-space: normal; | 62 white-space: normal; |
63 } | 63 } |
64 | 64 |
65 .security-origin-view .details-table .san-entry { | 65 .security-origin-view .details-table .san-entry { |
66 display: block; | 66 display: block; |
67 } | 67 } |
| 68 |
| 69 .security-origin-view .truncated-san .truncated-entry { |
| 70 display: none; |
| 71 } |
OLD | NEW |