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

Side by Side Diff: Source/devtools/front_end/flameChart.css

Issue 668683002: DevTools: remove style reuse from flamechart clients, prepare it to become a component. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 .overview-container {
2 overflow: hidden;
3 position: absolute;
4 top: 0;
5 width: 100%;
6 height: 80px;
7 }
8
9 #flame-chart-overview-grid .resources-dividers-label-bar {
10 pointer-events: auto;
11 }
12
13 .flame-chart-main-pane { 1 .flame-chart-main-pane {
14 overflow: hidden; 2 overflow: hidden;
15 } 3 }
16 4
17 .flame-chart-overview-pane {
18 flex: 0 0 80px !important;
19 }
20
21 #flame-chart-overview-container {
22 border-bottom: 1px solid rgba(0, 0, 0, 0.3);
23 }
24
25 .flame-chart-overview-canvas {
26 position: absolute;
27 top: 20px;
28 left: 0;
29 right: 0;
30 bottom: 0;
31 }
32
33 .flame-chart-marker-highlight-element { 5 .flame-chart-marker-highlight-element {
34 position: absolute; 6 position: absolute;
35 top: 0; 7 top: 0;
36 height: 20px; 8 height: 20px;
37 width: 4px; 9 width: 4px;
38 margin: 0 -2px; 10 margin: 0 -2px;
39 content: ""; 11 content: "";
40 display: block; 12 display: block;
41 } 13 }
42 14
(...skipping 18 matching lines...) Expand all
61 overflow-x: hidden; 33 overflow-x: hidden;
62 } 34 }
63 35
64 body.platform-mac .flame-chart-v-scroll { 36 body.platform-mac .flame-chart-v-scroll {
65 position: absolute; 37 position: absolute;
66 width: 14px; 38 width: 14px;
67 top: 0; 39 top: 0;
68 right: 0; 40 right: 0;
69 bottom: 0; 41 bottom: 0;
70 } 42 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/FlameChart.js ('k') | Source/devtools/front_end/heapProfiler.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698