| 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 { |
| 7 padding-bottom: 10px; |
| 8 border-bottom: 1px solid rgb(230, 230, 230); |
| 9 } |
| 10 |
| 6 .security-origin-view { | 11 .security-origin-view { |
| 7 overflow-x: hidden; | 12 overflow-x: hidden; |
| 8 overflow-y: scroll; | 13 overflow-y: scroll; |
| 9 display: block; | 14 display: block; |
| 10 -webkit-user-select: text; | 15 -webkit-user-select: text; |
| 11 } | 16 } |
| 12 | 17 |
| 13 .security-origin-view .origin-view-section { | 18 .security-origin-view .origin-view-section { |
| 14 padding: 1.5em 1.5em 1.5em; | |
| 15 border-bottom: 1px solid rgb(230, 230, 230); | 19 border-bottom: 1px solid rgb(230, 230, 230); |
| 16 } | 20 padding: 12px 6px; |
| 17 | |
| 18 .security-origin-view .title-section { | |
| 19 padding-bottom: 1.5em; | |
| 20 } | 21 } |
| 21 | 22 |
| 22 .security-origin-view .origin-display { | 23 .security-origin-view .origin-display { |
| 23 padding-left: 18px; | 24 padding-left: 38px; |
| 25 display: flex; |
| 26 align-items: center; |
| 27 } |
| 28 |
| 29 .title-section > .link { |
| 30 padding: 6px 0 0 39px |
| 24 } | 31 } |
| 25 | 32 |
| 26 .security-origin-view .origin-display .security-property { | 33 .security-origin-view .origin-display .security-property { |
| 27 display: inline-block; | 34 display: inline-block; |
| 28 vertical-align: middle; | 35 vertical-align: middle; |
| 29 position: absolute; | 36 position: absolute; |
| 30 left: 18px; | 37 left: 18px; |
| 31 } | 38 } |
| 32 | 39 |
| 33 .security-origin-view .origin-view-title { | 40 .security-origin-view .origin-view-title { |
| 34 font-size: 1.25em; | 41 font-size: 15px; |
| 35 margin-top: 0.5em; | 42 padding: 12px 24px; |
| 36 margin-bottom: 0.25em; | |
| 37 } | 43 } |
| 38 | 44 |
| 39 .security-origin-view .origin-view-section-title { | 45 .security-origin-view .origin-view-section-title {margin-bottom: 10px;padding-le
ft: 18px;} |
| 40 font-weight: bold; | |
| 41 font-size: 1em; | |
| 42 margin-bottom: 0.25em; | |
| 43 } | |
| 44 | 46 |
| 45 .security-origin-view .details-table-row { | 47 .security-origin-view .details-table-row { |
| 46 display: flex; | 48 display: flex; |
| 47 white-space: nowrap; | 49 white-space: nowrap; |
| 48 overflow: hidden; | 50 overflow: hidden; |
| 49 margin-top: 6px; | 51 line-height: 22px; |
| 50 } | 52 } |
| 51 | 53 |
| 52 .security-origin-view .details-table-row > div { | 54 .security-origin-view .details-table-row > div { |
| 53 align-items: flex-start; | 55 align-items: flex-start; |
| 54 } | 56 } |
| 55 | 57 |
| 56 .security-origin-view .details-table-row > div:first-child { | 58 .security-origin-view .details-table-row > div:first-child { |
| 57 color: rgb(140, 140, 140); | 59 color: rgb(140, 140, 140); |
| 58 width: 7em; | 60 width: 128px; |
| 59 margin-right: 1em; | 61 margin-right: 1em; |
| 60 flex: none; | 62 flex: none; |
| 61 display: flex; | 63 display: flex; |
| 62 justify-content: flex-end; | 64 justify-content: flex-end; |
| 63 } | 65 } |
| 64 .security-origin-view .details-table-row > div:nth-child(2) { | 66 .security-origin-view .details-table-row > div:nth-child(2) { |
| 65 flex: auto; | 67 flex: auto; |
| 66 white-space: normal; | 68 white-space: normal; |
| 67 } | 69 } |
| 68 | 70 |
| 69 .security-origin-view .details-table .empty-san { | 71 .security-origin-view .details-table .empty-san { |
| 70 color: rgb(140, 140, 140); | 72 color: rgb(140, 140, 140); |
| 71 } | 73 } |
| 72 | 74 |
| 73 .security-origin-view .details-table .san-entry { | 75 .security-origin-view .details-table .san-entry { |
| 74 display: block; | 76 display: block; |
| 75 } | 77 } |
| 76 | 78 |
| 77 .security-origin-view .truncated-san .truncated-entry { | 79 .security-origin-view .truncated-san .truncated-entry { |
| 78 display: none; | 80 display: none; |
| 79 } | 81 } |
| 80 | 82 |
| 81 .security-certificate-button { | 83 .security-certificate-button { |
| 82 margin-top: 4px; | 84 margin-top: 4px; |
| 83 } | 85 } |
| OLD | NEW |