OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 .security-origin-view { |
| 7 overflow-x: hidden; |
| 8 overflow-y: scroll; |
| 9 display: block; |
| 10 -webkit-user-select: text; |
| 11 } |
| 12 |
| 13 .security-origin-view .origin-view-section { |
| 14 padding: 0.5em 1.5em 1.5em; |
| 15 border-bottom: 1px solid rgb(230, 230, 230); |
| 16 } |
| 17 |
| 18 .security-origin-view .title-section { |
| 19 padding-bottom: 1.5em; |
| 20 } |
| 21 |
| 22 .security-origin-view .origin-display .security-property { |
| 23 margin: -1px 2px 0px 0px; |
| 24 display: inline-block; |
| 25 vertical-align: middle; |
| 26 } |
| 27 |
| 28 .security-origin-view .origin-view-title { |
| 29 font-size: 1.25em; |
| 30 margin-top: 0.5em; |
| 31 margin-bottom: 0.25em; |
| 32 } |
| 33 |
| 34 .security-origin-view .origin-view-section-title { |
| 35 font-weight: bold; |
| 36 font-size: 1em; |
| 37 margin-top: 0.5em; |
| 38 margin-bottom: 0.25em; |
| 39 } |
| 40 |
| 41 .security-origin-view .details-table-row { |
| 42 display: flex; |
| 43 white-space: nowrap; |
| 44 overflow: hidden; |
| 45 margin-top: 6px; |
| 46 } |
| 47 |
| 48 .security-origin-view .details-table-row > div { |
| 49 align-items: flex-start; |
| 50 } |
| 51 |
| 52 .security-origin-view .details-table-row > div:first-child { |
| 53 color: rgb(140, 140, 140); |
| 54 width: 7em; |
| 55 margin-right: 1em; |
| 56 flex: none; |
| 57 display: flex; |
| 58 justify-content: flex-end; |
| 59 } |
| 60 .security-origin-view .details-table-row > div:nth-child(2) { |
| 61 flex: auto; |
| 62 white-space: normal; |
| 63 } |
| 64 |
| 65 .security-origin-view .details-table .san-entry { |
| 66 display: block; |
| 67 } |
OLD | NEW |