| 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-bottom: 10px; | 7 padding-bottom: 10px; |
| 8 border-bottom: 1px solid rgb(230, 230, 230); | 8 border-bottom: 1px solid rgb(230, 230, 230); |
| 9 } | 9 } |
| 10 | 10 |
| 11 .security-origin-view { | 11 .security-origin-view { |
| 12 overflow-x: hidden; | 12 overflow-x: hidden; |
| 13 overflow-y: scroll; | 13 overflow-y: scroll; |
| 14 display: block; | 14 display: block; |
| 15 -webkit-user-select: text; | 15 -webkit-user-select: text; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .security-origin-view .origin-view-section { | 18 .security-origin-view .origin-view-section { |
| 19 border-bottom: 1px solid rgb(230, 230, 230); | 19 border-bottom: 1px solid rgb(230, 230, 230); |
| 20 padding: 12px 6px; | 20 padding: 12px 6px 12px 18px; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .security-origin-view .origin-display { | 23 .security-origin-view .origin-display { |
| 24 padding-left: 38px; | 24 padding-left: 38px; |
| 25 display: flex; | 25 display: flex; |
| 26 align-items: center; | 26 align-items: center; |
| 27 } | 27 } |
| 28 | 28 |
| 29 .title-section > .link { | 29 .title-section > .link { |
| 30 padding: 6px 0 0 39px | 30 padding: 6px 0 0 39px |
| 31 } | 31 } |
| 32 | 32 |
| 33 .security-origin-view .origin-display .security-property { | 33 .security-origin-view .origin-display .security-property { |
| 34 display: inline-block; | 34 display: inline-block; |
| 35 vertical-align: middle; | 35 vertical-align: middle; |
| 36 position: absolute; | 36 position: absolute; |
| 37 left: 18px; | 37 left: 18px; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .security-origin-view .origin-view-title { | 40 .security-origin-view .origin-view-title { |
| 41 font-size: 15px; | 41 font-size: 15px; |
| 42 padding: 12px 24px; | 42 padding: 12px 24px; |
| 43 } | 43 } |
| 44 | 44 |
| 45 .security-origin-view .origin-view-section-title {margin-bottom: 10px;padding-le
ft: 18px;} | 45 .security-origin-view .origin-view-section-title { |
| 46 margin-bottom: 10px; |
| 47 font-weight: bold; |
| 48 color: #555; |
| 49 } |
| 46 | 50 |
| 47 .security-origin-view .details-table-row { | 51 .security-origin-view .details-table-row { |
| 48 display: flex; | 52 display: flex; |
| 49 white-space: nowrap; | 53 white-space: nowrap; |
| 50 overflow: hidden; | 54 overflow: hidden; |
| 51 line-height: 22px; | 55 line-height: 22px; |
| 52 } | 56 } |
| 53 | 57 |
| 54 .security-origin-view .details-table-row > div { | 58 .security-origin-view .details-table-row > div { |
| 55 align-items: flex-start; | 59 align-items: flex-start; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 76 display: block; | 80 display: block; |
| 77 } | 81 } |
| 78 | 82 |
| 79 .security-origin-view .truncated-san .truncated-entry { | 83 .security-origin-view .truncated-san .truncated-entry { |
| 80 display: none; | 84 display: none; |
| 81 } | 85 } |
| 82 | 86 |
| 83 .security-certificate-button { | 87 .security-certificate-button { |
| 84 margin-top: 4px; | 88 margin-top: 4px; |
| 85 } | 89 } |
| OLD | NEW |