Skip to content

Commit d5acd6a

Browse files
committed
Fix for grey background flashing behind “Download All” button
1 parent b36957a commit d5acd6a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/shared/components/challenge-detail/Submissions/style.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,7 @@
471471
justify-content: flex-end;
472472
margin-bottom: 10px;
473473

474+
button.download,
474475
.download {
475476
@include roboto-bold;
476477

@@ -483,12 +484,16 @@
483484
color: #0ab88a;
484485
}
485486

487+
&:focus,
486488
&:disabled {
487-
pointer-events: none;
488489
background-color: transparent;
489490
color: #137d60;
490491
}
491492

493+
&:disabled {
494+
pointer-events: none;
495+
}
496+
492497
&.MM {
493498
cursor: pointer;
494499
}

src/shared/components/challenge-detail/Winners/style.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
margin-bottom: 20px;
2929
}
3030

31+
button.download,
3132
.download {
3233
@include roboto-bold;
3334

@@ -40,12 +41,16 @@
4041
color: #0ab88a;
4142
}
4243

44+
&:focus,
4345
&:disabled {
44-
pointer-events: none;
4546
background-color: transparent;
4647
color: #137d60;
4748
}
4849

50+
&:disabled {
51+
pointer-events: none;
52+
}
53+
4954
&.MM {
5055
cursor: pointer;
5156
}

0 commit comments

Comments
 (0)