chrome-devtools-frontend
Version:
Chrome DevTools UI
43 lines (34 loc) • 803 B
CSS
/*
* Copyright 2017 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
[slot="main"] {
flex-direction: column;
display: flex;
}
[slot="sidebar"] {
overflow: auto;
}
.diff-container {
flex: 1;
overflow: auto;
& .widget:first-child {
height: 100%;
}
.combined-diff-view {
padding-inline: var(--sys-size-6);
padding-block: var(--sys-size-4);
}
}
:focus.selected {
background-color: var(--sys-color-tonal-container);
color: var(--sys-color-on-tonal-container);
}
.changes-toolbar {
background-color: var(--sys-color-cdt-base-container);
border-top: 1px solid var(--sys-color-divider);
}
[hidden] {
display: none ; /* stylelint-disable-line declaration-no-important */
}