chrome-devtools-frontend
Version:
Chrome DevTools UI
47 lines (39 loc) • 1.17 kB
CSS
/*
* Copyright (c) 2015 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.
*/
.computed-properties {
user-select: text;
flex-shrink: 0;
}
.styles-sidebar-pane-toolbar {
border-bottom: 1px solid #eee; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
flex-shrink: 0;
}
.styles-sidebar-pane-filter-box {
flex: auto;
display: flex;
}
.styles-sidebar-pane-filter-box > input {
outline: none ;
border: none;
width: 100%;
background: var(--color-background);
padding-left: 4px;
margin: 3px;
}
.styles-sidebar-pane-filter-box > input:focus,
.styles-sidebar-pane-filter-box > input:not(:placeholder-shown) {
box-shadow: var(--focus-ring-active-shadow);
}
.styles-sidebar-pane-filter-box > input::placeholder {
color: rgb(0 0 0 / 54%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
@media (forced-colors: active) {
.styles-sidebar-pane-filter-box > input {
border: 1px solid ButtonText;
}
}