Skip to content

Commit 3f7353d

Browse files
committed
More specific CSS selector for the 'processing upload data' overlay.
To avoid having the 'Processing upload data' text show up on any other spinner overlays that happen to be on the page (i.e. the trace ending indicator)
1 parent fbcb7e1 commit 3f7353d

File tree

1 file changed

+2
-2
lines changed
  • codepulse/src/main/resources/toserve/pages/traces

1 file changed

+2
-2
lines changed

codepulse/src/main/resources/toserve/pages/traces/traces.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ body {
22
background: #6D6D6D;
33
}
44

5-
body .overlay {
5+
body > .overlay {
66
/* The waiting overlay for when the trace is loading data.
77
* It needs to be in front of the other fixed-position things,
88
* but behind the header and footer.
99
*/
1010
z-index: 2;
1111
}
1212

13-
body .overlay:before {
13+
body > .overlay:before {
1414
content: 'Processing upload data...';
1515
position: absolute;
1616
top: calc(50% - 50px);

0 commit comments

Comments
 (0)