Skip to content

Commit

Permalink
version list improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
phasephasephase committed Jul 9, 2023
1 parent ef7ea02 commit cb13422
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions JiayiLauncher/Pages/Extra/FullVersionList.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
@keyframes alert {
0% {
border: 3px solid var(--accent);
background-color: var(--background-secondary);
background-color: rgba(100, 100, 100, 0.15);
}

/* flash background */
Expand All @@ -105,33 +105,34 @@
}

25% {
background-color: var(--background-secondary);
background-color: rgba(100, 100, 100, 0.15);
}

40% {
background-color: var(--background-primary);
}

55% {
background-color: var(--background-secondary);
background-color: rgba(100, 100, 100, 0.15);
}

70% {
background-color: var(--background-primary);
}

85% {
background-color: var(--background-secondary);
background-color: rgba(100, 100, 100, 0.15);
}

90% {
border: 3px solid var(--accent);
background-color: var(--background-secondary);
background-color: rgba(100, 100, 100, 0.15);
}

/* back to normal */
100% {
border: 0;
/* accent color because it will fade to white */
border: 0 solid var(--accent);
border-left: 5px solid var(--accent);
}
}

0 comments on commit cb13422

Please sign in to comment.