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

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

Issue 1463393003: DevTools: Make item info follow the mouse on the flame chart. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 } 52 }
53 53
54 .flame-chart-selection-overlay .time-span { 54 .flame-chart-selection-overlay .time-span {
55 white-space: nowrap; 55 white-space: nowrap;
56 position: absolute; 56 position: absolute;
57 left: 0; 57 left: 0;
58 right: 0; 58 right: 0;
59 bottom: 0; 59 bottom: 0;
60 } 60 }
61 61
62 .flame-chart-entry-info { 62 .flame-chart-entry-info:not(:empty) {
63 z-index: 100;
64 margin: 6px 10px;
63 position: absolute; 65 position: absolute;
64 bottom: 6px; 66 background-color: white;
65 left: 12px;
66 background-color: rgba(255, 255, 255, 0.7);
67 pointer-events: none; 67 pointer-events: none;
68 padding: 2px;
69 border: 1px solid hsl(0, 0%, 90%);
70 box-shadow: hsla(0, 0%, 0%, 0.2) 1px 1px 8px;
71 }
72
73 .flame-chart-entry-info table tr td {
74 padding: 0;
75 white-space: nowrap;
76 }
77
78 .flame-chart-entry-info table tr td:not(:empty) {
79 padding: 0 4px;
68 } 80 }
69 81
70 .flame-chart-entry-info table tr td:first-child { 82 .flame-chart-entry-info table tr td:first-child {
71 font-weight: bold; 83 font-weight: bold;
72 padding-right: 8px;
73 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698