/*
 * 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.
 */

.tree-outline {
    padding: 0;
}

.tree-outline li {
    margin-left: 14px;
    -webkit-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);
}

:host-context(.-theme-with-dark-background) .breakpoint-hit {
    background-color: hsl(46, 98%, 22%);
    color: #ccc;
}

.breakpoint-hit .breakpoint-hit-marker {
    background-color: rgb(255, 255, 194);
    height: 18px;
    left: 0;
    margin-left: -30px;
    position: absolute;
    right: -4px;
    z-index: -1;
}
