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