chrome-devtools-frontend
Version:
Chrome DevTools UI
33 lines (27 loc) • 649 B
CSS
/*
* Copyright 2017 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 {
position: absolute ; /* stylelint-disable-line declaration-no-important */
inset: 0;
overflow: hidden;
contain: strict;
background-color: transparent;
}
:host-context(.dimmed-pane) {
background-color: var(--sys-color-state-scrim);
}
:host-context(.no-pointer-events) {
pointer-events: none;
}
.widget {
display: flex;
background-color: transparent;
pointer-events: auto;
flex: none;
}
.no-pointer-events {
pointer-events: none;
}