Skip to content

Commit de2ae90

Browse files
committed
Update OpenWithButton.module.css
1 parent cda5198 commit de2ae90

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

src/components/OpenWithButton.module.css

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
transition: opacity 0.3s;
4343
pointer-events: auto;
4444
a {
45-
color: var(--processing-blue-mid);
45+
color: var(--processing-blue-light);
46+
text-decoration: underline;
47+
&:hover {
48+
color: white;
49+
}
4650
}
4751
h1 {
4852
color: #fff;
@@ -68,24 +72,23 @@
6872
font-size: 0.9em;
6973
}
7074

71-
.downloadLink {
72-
color: var(--processing-blue-light) !important;
73-
text-decoration: underline;
74-
}
75-
76-
.downloadLink:hover {
77-
color: white !important;
78-
}
79-
8075
@keyframes ellipsis {
81-
10% { content: " "; }
82-
25% { content: " . "; }
83-
50% { content: " .. "; }
84-
75% { content: " ..."; }
76+
10% {
77+
content: " ";
78+
}
79+
25% {
80+
content: " . ";
81+
}
82+
50% {
83+
content: " .. ";
84+
}
85+
75% {
86+
content: " ...";
87+
}
8588
}
8689

8790
.ellipsis::after {
88-
display: inline-block;
89-
animation: ellipsis 1.5s infinite;
90-
content: " ...";
91+
display: inline-block;
92+
animation: ellipsis 1.5s infinite;
93+
content: " ...";
9194
}

0 commit comments

Comments
 (0)