| Index: Source/devtools/front_end/timelinePanel.css
|
| diff --git a/Source/devtools/front_end/timelinePanel.css b/Source/devtools/front_end/timelinePanel.css
|
| index d551cb11a301a2e9e05cd0200c275d0bc1ee309e..6b92d007518bcf21c44937e2894ff2a282ea6765 100644
|
| --- a/Source/devtools/front_end/timelinePanel.css
|
| +++ b/Source/devtools/front_end/timelinePanel.css
|
| @@ -744,6 +744,103 @@
|
| align-items: center;
|
| }
|
|
|
| +.layers-3d-view {
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.layers-3d-view canvas {
|
| + flex: 1 1;
|
| +}
|
| +
|
| +.transform-control-panel .status-bar-item > .glyph {
|
| + -webkit-mask-image: url(Images/transformControls.png);
|
| + -webkit-mask-size: 96px 24px;
|
| + opacity: 0.8;
|
| +}
|
| +
|
| +@media (-webkit-min-device-pixel-ratio: 1.5) {
|
| +.transform-control-panel .status-bar-item > .glyph {
|
| + -webkit-mask-image: url(Images/transformControls_2x.png);
|
| +}
|
| +} /* media */
|
| +
|
| +.transform-control-panel .transform-mode-rotate .glyph {
|
| + -webkit-mask-position: -64px 0px;
|
| +}
|
| +
|
| +.transform-control-panel .transform-reset .glyph {
|
| + -webkit-mask-position: -32px 0px;
|
| +}
|
| +
|
| +.layer-details-view .empty-view {
|
| + font-size: 16px;
|
| +}
|
| +
|
| +.layer-details-view table td {
|
| + padding-left: 8px;
|
| +}
|
| +
|
| +.layer-details-view table td:first-child {
|
| + font-weight: bold;
|
| +}
|
| +
|
| +.layer-details-view .scroll-rect.active {
|
| + background-color: rgba(100, 100, 100, 0.2);
|
| +}
|
| +
|
| +.paint-profiler-overview .progress-banner {
|
| + color: #777;
|
| + background-color: rgba(255, 255, 255, 0.8);
|
| + font-size: 20px;
|
| + z-index: 500;
|
| + display: flex;
|
| + justify-content: center;
|
| + align-items: center;
|
| +}
|
| +
|
| +.paint-profiler-canvas-container {
|
| + flex: auto;
|
| + position: relative;
|
| +}
|
| +
|
| +.paint-profiler-overview {
|
| + background-color: rgb(244, 244, 244);
|
| +}
|
| +
|
| +.paint-profiler-pie-chart {
|
| + width: 60px;
|
| + height: 60px;
|
| + padding: 2px;
|
| + overflow: hidden;
|
| + font-size: 10px;
|
| +}
|
| +
|
| +.paint-profiler-canvas-container canvas {
|
| + z-index: 200;
|
| + background-color: white;
|
| + opacity: 0.95;
|
| + height: 100%;
|
| + width: 100%;
|
| +}
|
| +
|
| +.paint-profiler-canvas-container .overview-grid-dividers-background,
|
| +.paint-profiler-canvas-container .overview-grid-window {
|
| + bottom: 0;
|
| + height: auto;
|
| +}
|
| +
|
| +.paint-profiler-canvas-container .overview-grid-window-resizer {
|
| + z-index: 2000;
|
| +}
|
| +
|
| +.profiler-log-view .console-formatted-string {
|
| + white-space: nowrap;
|
| +}
|
| +
|
| +.profiler-log-view.section .properties {
|
| + display: block;
|
| +}
|
| +
|
| .timeline-paint-profiler-view .outline-disclosure li {
|
| margin-top: 0;
|
| margin-bottom: 0;
|
|
|