show disabled held piece

This commit is contained in:
2024-08-02 23:24:39 +02:00
parent d75696fbc3
commit ab023ec982
7 changed files with 46 additions and 6 deletions

View File

@ -106,6 +106,11 @@
1px 1px 4px #FFF2;
}
.disabled.mino {
filter: brightness(50%) contrast(80%);
opacity: 70%;
}
@keyframes locked-animation {
from {
filter: saturate(50%) brightness(400%);

View File

@ -15,7 +15,7 @@ body[data-bs-theme="dark"] {
background-color: rgba(37, 41, 45, 40%);
}
.mino:not(.ghost):not(.locking) {
.mino:not(.ghost):not(.locking):not(.disabled) {
padding: 1px;
position: relative;
z-index: 0;
@ -71,6 +71,15 @@ body[data-bs-theme="dark"] {
box-shadow: 0px 0px 10px rgba(242, 255, 255, 100%);
}
.disabled.mino {
opacity: 60%;
}
.disabled.mino:before {
opacity: 50%;
box-shadow: none;
}
@keyframes locked-animation {
from {
opacity: 1;

View File

@ -88,6 +88,10 @@ tr.matrix td:not(.mino) {
animation-duration: 0.2s;
}
.disabled.mino {
filter: brightness(50%) contrast(50%);
}
@keyframes locked-animation {
from {
filter: saturate(50%) brightness(300%);

View File

@ -92,6 +92,12 @@ tr.matrix td:not(.mino) {
animation-duration: 0.2s;
}
.disabled.mino {
opacity: 50%;
outline: 0px;
box-shadow: none;
}
tr.cleared-line-animation {
animation: none;
}

View File

@ -129,7 +129,8 @@ td {
animation: blinker 0.08s step-start infinite;
}
.ghost.mino {
.ghost.mino,
.disabled.mino {
opacity: 50%;
}