chrome-devtools-frontend
Version:
Chrome DevTools UI
50 lines (41 loc) • 925 B
CSS
/*
* 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;
}
.tree-outline li.parent {
margin-left: 1px;
}
.tree-outline li:not(.parent)::before {
display: none;
}
.breakpoint-hit {
background-color: var(--sys-color-yellow-container);
color: var(--sys-color-on-yellow-container);
}
.breakpoint-hit .breakpoint-hit-marker {
background-color: var(--sys-color-yellow-container);
border-right: 3px solid var(--sys-color-yellow-outline);
color: var(--sys-color-on-yellow-container);
height: 100%;
left: 0;
margin-left: -30px;
position: absolute;
right: -4px;
z-index: -1;
}
devtools-checkbox.source-code {
max-width: 100%;
}