UNPKG

chrome-devtools-frontend

Version:
57 lines (47 loc) 1.33 kB
/* * Copyright 2016 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. */ :host { margin: 0; padding: 2px 4px; min-height: 18px; } .tree-outline { padding: 0; } .tree-outline li { margin-left: 14px; user-select: text; cursor: default; } .tree-outline li.parent { margin-left: 1px; } .tree-outline li:not(.parent)::before { display: none; } .breakpoint-hit { background-color: rgb(255 255 194); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */ } :host-context(.-theme-with-dark-background) .breakpoint-hit { background-color: hsl(46deg 98% 22%); color: #ccc; } .breakpoint-hit .breakpoint-hit-marker { background-color: rgb(255 255 194); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */ border-right: 3px solid rgb(107 97 48); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */ height: 18px; left: 0; margin-left: -30px; position: absolute; right: -4px; z-index: -1; } :host-context(.-theme-with-dark-background) .breakpoint-hit .breakpoint-hit-marker { background-color: hsl(46deg 98% 22%); }