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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/flameChart.css

Issue 2598873002: DevTools: Make sure network and main flamechart scales are in sync. (Closed)
Patch Set: addressing comment Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/ChartViewport.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .flame-chart-main-pane { 1 .flame-chart-main-pane {
2 overflow: hidden; 2 overflow: hidden;
3 } 3 }
4 4
5 .flame-chart-marker-highlight-element { 5 .flame-chart-marker-highlight-element {
6 position: absolute; 6 position: absolute;
7 top: 0; 7 top: 0;
8 height: 20px; 8 height: 20px;
9 width: 4px; 9 width: 4px;
10 margin: 0 -2px; 10 margin: 0 -2px;
(...skipping 20 matching lines...) Expand all
31 .flame-chart-v-scroll { 31 .flame-chart-v-scroll {
32 position: absolute; 32 position: absolute;
33 top: 0; 33 top: 0;
34 right: 0; 34 right: 0;
35 bottom: 0; 35 bottom: 0;
36 overflow-x: hidden; 36 overflow-x: hidden;
37 z-index: 200; 37 z-index: 200;
38 padding-left: 1px; 38 padding-left: 1px;
39 } 39 }
40 40
41 .flame-chart-v-scroll.always-show-scrollbar {
42 overflow-y: scroll;
43 }
44
41 :host-context(.platform-mac) .flame-chart-v-scroll { 45 :host-context(.platform-mac) .flame-chart-v-scroll {
42 right: 2px; 46 right: 2px;
43 top: 3px; 47 top: 3px;
44 bottom: 3px; 48 bottom: 3px;
45 } 49 }
46 50
47 /* force non-overlay scrollbars */ 51 /* force non-overlay scrollbars */
48 :host-context(.platform-mac) ::-webkit-scrollbar { 52 :host-context(.platform-mac) ::-webkit-scrollbar {
49 width: 8px; 53 width: 8px;
50 } 54 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 white-space: nowrap; 105 white-space: nowrap;
102 } 106 }
103 107
104 .flame-chart-entry-info table tr td:first-child { 108 .flame-chart-entry-info table tr td:first-child {
105 font-weight: bold; 109 font-weight: bold;
106 } 110 }
107 111
108 .flame-chart-entry-info table tr td span { 112 .flame-chart-entry-info table tr td span {
109 margin-right: 5px; 113 margin-right: 5px;
110 } 114 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/ChartViewport.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698