Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: Source/devtools/front_end/timelinePanel.css

Issue 658793002: DevTools: move non panel-specific CSS from layerPanel.css to timelinePanel.css (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698