Skip to content

Commit 08b608f

Browse files
committed
update timeout animation for high contrast mode
1 parent 5792765 commit 08b608f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

sass/popup.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,17 @@ svg {
769769
}
770770
}
771771

772+
@keyframes flash {
773+
0%,
774+
33% {
775+
opacity: 0;
776+
}
777+
33.1%,
778+
100% {
779+
opacity: 1;
780+
}
781+
}
782+
772783
@keyframes fadeshow {
773784
0% {
774785
opacity: 0;
@@ -926,4 +937,12 @@ svg {
926937
}
927938
}
928939
}
940+
941+
#codes {
942+
&:not(.edit) {
943+
.code.timeout:not(.hotp) {
944+
animation: flash 1s infinite;
945+
}
946+
}
947+
}
929948
}

0 commit comments

Comments
 (0)