in resources/perf.webkit.org/public/v3/components/chart-pane-base.js [324:406]
static cssTemplate()
{
return Toolbar.cssTemplate() + `
.chart-pane {
padding: 0rem;
height: 18rem;
outline: none;
}
.chart-pane:focus .chart-pane-header {
background: rgba(204, 153, 51, 0.1);
}
.chart-pane-body {
position: relative;
width: 100%;
height: 100%;
}
.chart-pane-main {
padding-right: 20rem;
height: 100%;
margin: 0;
vertical-align: middle;
text-align: center;
}
.has-second-sidebar .chart-pane-main {
padding-right: 40rem;
}
.chart-pane-main > * {
width: 100%;
height: 100%;
}
.chart-pane-sidebar,
.chart-pane-second-sidebar {
position: absolute;
right: 0;
top: 0;
width: 0;
border-left: solid 1px #ccc;
height: 100%;
}
:not(.has-second-sidebar) > .chart-pane-second-sidebar {
border-left: 0;
}
.chart-pane-sidebar {
width: 20rem;
}
.has-second-sidebar .chart-pane-sidebar {
right: 20rem;
}
.has-second-sidebar .chart-pane-second-sidebar {
width: 20rem;
}
.chart-pane-overview {
width: 100%;
height: 5rem;
border-bottom: solid 1px #ccc;
}
.chart-pane-overview > * {
display: block;
width: 100%;
height: 100%;
}
.chart-pane-details {
position: relative;
display: block;
height: calc(100% - 5.5rem - 2px);
overflow-y: scroll;
padding-top: 0.5rem;
}
`;
}