don't double up combo highlight check and make backgrounds so you can always see colours

This commit is contained in:
ntr
2019-10-16 16:16:17 +11:00
parent 62aa801692
commit f167ff82bb
3 changed files with 71 additions and 27 deletions
+3 -3
View File
@@ -82,7 +82,7 @@ svg {
animation: bg 2s cubic-bezier(0.5, 0, 0.5, 1) 0s infinite alternate;
}
.combo-border {
.combo-border:not(.highlight) {
animation: co 0.75s cubic-bezier(0, 0, 1, 1) 0s infinite alternate;
}
@@ -115,10 +115,10 @@ svg {
@keyframes co {
from {
border-color: @white;
background: @black;
}
to {
border-color: @gray-box;
background: @gray-exists;
}
}