chrome-devtools-frontend
Version:
Chrome DevTools UI
39 lines (33 loc) • 918 B
CSS
/*
* Copyright 2016 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@scope to (devtools-widget > *) {
:scope {
background-color: var(--sys-color-cdt-base-container);
display: flex;
flex-direction: row;
}
.paint-profiler-canvas-container {
flex: auto;
position: relative;
}
.paint-profiler-pie-chart {
width: 60px ; /* stylelint-disable-line declaration-no-important */
height: 60px ; /* stylelint-disable-line declaration-no-important */
padding: 2px;
overflow: hidden;
font-size: 10px;
}
.paint-profiler-canvas-container canvas {
z-index: 200;
background-color: var(--sys-color-cdt-base-container);
opacity: 95%;
height: 100%;
width: 100%;
}
.paint-profiler-canvas-container .overview-grid-window-resizer {
z-index: 2000;
}
}