| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 overflow: hidden; | 43 overflow: hidden; |
| 44 margin-top: 6px; | 44 margin-top: 6px; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .security-origin-view .details-table-row > div { | 47 .security-origin-view .details-table-row > div { |
| 48 align-items: flex-start; | 48 align-items: flex-start; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .security-origin-view .details-table-row > div:first-child { | 51 .security-origin-view .details-table-row > div:first-child { |
| 52 color: rgb(140, 140, 140); | 52 color: rgb(140, 140, 140); |
| 53 width: 7em; | 53 width: 8em; |
| 54 margin-right: 1em; | 54 margin-right: 1em; |
| 55 flex: none; | 55 flex: none; |
| 56 display: flex; | 56 display: flex; |
| 57 justify-content: flex-end; | 57 justify-content: flex-end; |
| 58 } | 58 } |
| 59 .security-origin-view .details-table-row > div:nth-child(2) { | 59 .security-origin-view .details-table-row > div:nth-child(2) { |
| 60 flex: auto; | 60 flex: auto; |
| 61 white-space: normal; | 61 white-space: normal; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .security-origin-view .details-table .empty-san { | 64 .security-origin-view .details-table .empty-san { |
| 65 color: rgb(140, 140, 140); | 65 color: rgb(140, 140, 140); |
| 66 } | 66 } |
| 67 | 67 |
| 68 .security-origin-view .details-table .san-entry { | 68 .security-origin-view .details-table .san-entry { |
| 69 display: block; | 69 display: block; |
| 70 } | 70 } |
| 71 | 71 |
| 72 .security-origin-view .truncated-san .truncated-entry { | 72 .security-origin-view .truncated-san .truncated-entry { |
| 73 display: none; | 73 display: none; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .security-certificate-button { | 76 .security-certificate-button { |
| 77 margin-top: 4px; | 77 margin-top: 4px; |
| 78 } | 78 } |
| OLD | NEW |