Skip to content

Commit 704f18c

Browse files
committed
Fixed problem with long labels showing over the time.
1 parent 1d4c01b commit 704f18c

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

src/profiler/profiler_style.css

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
{
5656
width: 155px;
5757
position: relative;
58+
overflow: hidden;
5859
}
5960

6061
.profiler-status
@@ -119,18 +120,28 @@
119120
.profiler-legend-time
120121
{
121122
position: absolute;
122-
right: 2px;
123+
right: 0;
124+
top: 0;
125+
padding: 0 2px 0 4px;
126+
background-color: #fff;
127+
}
128+
129+
.even .profiler-legend-time
130+
{
131+
background-color: #f6f6f6;
123132
}
124133

125-
.profiler-timeline-row:hover
134+
.profiler-timeline-row:hover,
135+
.profiler-timeline-row:hover .profiler-legend-time
126136
{
127-
background: rgba(137, 173, 232, 0.2);
137+
background-color: #E7EEF9;
128138
color: #000;
129139
}
130140

131-
.profiler-timeline-row:active
141+
.profiler-timeline-row:active,
142+
.profiler-timeline-row:active .profiler-legend-time
132143
{
133-
background-color: rgba(55, 115, 211, 0.7);
144+
background-color: #739DE0;
134145
color: #fff;
135146
}
136147

0 commit comments

Comments
 (0)