UNPKG

debug-server-next

Version:

Dev server for hippy-core.

65 lines (55 loc) 1.27 kB
// Copyright 2021 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. const styles = new CSSStyleSheet(); styles.replaceSync( `/* * Copyright 2021 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. */ div { line-height: 1.7em; } .arrow-icon-button { cursor: pointer; padding: 1px 0; border: none; background: none; } .arrow-icon { display: inline-block; -webkit-mask-image: url(Images/treeoutlineTriangles.svg); -webkit-mask-size: 32px 24px; -webkit-mask-position: 0 0; background-color: var(--color-text-primary); margin-top: 2px; height: 12px; width: 13px; } .arrow-icon.expanded { -webkit-mask-position: -16px 0; } .expandable-list-container { display: flex; margin-top: 4px; } .expandable-list-items { overflow: hidden; } .link, .devtools-link { color: var(--color-link); text-decoration: underline; cursor: pointer; padding: 2px 0; /* adjust focus ring size */ } button.link { border: none; background: none; font-family: inherit; font-size: inherit; } /*# sourceURL=expandableList.css */ `); export default styles;