chrome-devtools-frontend
Version:
Chrome DevTools UI
37 lines (30 loc) • 694 B
CSS
/*
* Copyright 2023 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.breadcrumbs {
display: none;
align-items: center;
height: 29px;
padding: 3px;
overflow: scroll hidden;
}
.breadcrumbs::-webkit-scrollbar {
display: none;
}
.breadcrumb {
padding: var(--sys-size-2) var(--sys-size-4);
border-radius: var(--sys-shape-corner-extra-small);
}
.breadcrumb:hover {
background-color: var(--sys-color-state-hover-on-subtle);
}
.range {
font-size: var(--sys-typescale-body4-size);
white-space: nowrap;
}
.active-breadcrumb {
font-weight: bold;
color: var(--app-color-active-breadcrumb);
}