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

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

Issue 214633002: FlameChart: vertical scroll implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 { 1 .overview-container {
2 overflow: hidden; 2 overflow: hidden;
3 position: absolute; 3 position: absolute;
4 top: 0; 4 top: 0;
5 width: 100%; 5 width: 100%;
6 height: 80px; 6 height: 80px;
7 } 7 }
8 8
9 .chart-container { 9 .chart-container {
10 flex: auto; 10 flex: auto;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 } 54 }
55 55
56 .flame-chart-selected-element { 56 .flame-chart-selected-element {
57 position: absolute; 57 position: absolute;
58 pointer-events: none; 58 pointer-events: none;
59 border-color: rgb(56, 121, 217); 59 border-color: rgb(56, 121, 217);
60 border-width: 2px; 60 border-width: 2px;
61 border-style: solid; 61 border-style: solid;
62 background-color: rgba(56, 121, 217, 0.2); 62 background-color: rgba(56, 121, 217, 0.2);
63 } 63 }
64
65 .flame-chart-v-scroll {
66 flex: 0 0 15px;
67 overflow-x: hidden;
68 overflow-y: scroll;
69 }
OLDNEW
« Source/devtools/front_end/FlameChart.js ('K') | « Source/devtools/front_end/FlameChart.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698