| /* |
| * Copyright 2021 The Chromium Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| :host { |
| display: block; |
| } |
| |
| .content { |
| background-color: var(--sys-color-cdt-base-container); |
| display: grid; |
| grid-template-columns: min-content 1fr; |
| user-select: text; |
| margin: var(--sys-size-5) 0; |
| } |
| |
| .report-title { |
| padding: var(--sys-size-7) var(--sys-size-9); |
| font: var(--sys-typescale-headline4); |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| border-bottom: 1px solid var(--sys-color-divider); |
| color: var(--sys-color-on-surface); |
| background-color: var(--sys-color-cdt-base-container); |
| margin: 0; |
| } |
| |
| .report-url { |
| background: none; |
| border-radius: 2px; |
| border: none; |
| color: var(--text-link); |
| cursor: pointer; |
| display: block; |
| font: var(--sys-typescale-body4-regular); |
| height: unset; |
| margin: 0; |
| outline-offset: 2px; |
| outline: none; |
| padding: 0 !important; /* stylelint-disable-line declaration-no-important */ |
| text-decoration: underline; |
| } |