| /* |
| * Copyright 2017 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| .dom-breakpoints-container { |
| overflow: auto; |
| } |
| |
| .breakpoint-list { |
| padding-bottom: 3px; |
| } |
| |
| .breakpoint-list .dom-breakpoint > div { |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| |
| .breakpoint-entry { |
| display: flex; |
| white-space: nowrap; |
| text-overflow: ellipsis; |
| overflow: hidden; |
| padding: 2px 0; |
| } |
| |
| .breakpoint-entry:focus-visible { |
| background-color: var(--sys-color-tonal-container); |
| } |
| |
| .breakpoint-hit { |
| background-color: var(--sys-color-neutral-container); |
| color: var(--sys-color-on-surface); |
| } |
| |
| .placeholder { |
| display: flex; |
| height: 100%; |
| justify-content: center; |
| } |
| |
| :host-context(.sources.panel) .empty-view-scroller { |
| display: none; |
| } |
| |
| :host-context(.elements.panel) .placeholder .gray-info-message { |
| display: none; |
| } |
| |
| @media (forced-colors: active) { |
| .breakpoint-entry:focus-visible, |
| .breakpoint-list .breakpoint-entry:hover { |
| forced-color-adjust: none; |
| background-color: Highlight; |
| } |
| |
| .breakpoint-entry:focus-visible *, |
| .breakpoint-list .breakpoint-entry:hover * { |
| color: HighlightText; |
| } |
| } |