Merge branch '3729a3762aa6b1aa08a682aea48fb37ab5fe9bd5'

This commit is contained in:
2026-01-03 05:06:08 +01:00
6 changed files with 9 additions and 5 deletions

View File

@@ -41,6 +41,10 @@ body {
text-align: right; text-align: right;
} }
#timeCell {
min-width: 10ch;
}
.minoes-table { .minoes-table {
--piece-column: 0; --piece-column: 0;
--piece-row : 0; --piece-row : 0;

View File

@@ -76,7 +76,7 @@ tr.matrix td:not(.mino) {
} }
.ghost.mino { .ghost.mino {
opacity: 50%; opacity: 5%;
box-shadow: none; box-shadow: none;
} }

View File

@@ -120,7 +120,7 @@ td {
} }
@keyframes blinker { @keyframes blinker {
50% { 35% {
opacity: 0; opacity: 0;
} }
} }

View File

@@ -17,7 +17,7 @@
<link rel="alternate stylesheet" href="css/synthwave.css" title="Synthwave"> <link rel="alternate stylesheet" href="css/synthwave.css" title="Synthwave">
<link rel="alternate stylesheet" href="css/retro.css" title="Rétro"> <link rel="alternate stylesheet" href="css/retro.css" title="Rétro">
<link rel="alternate stylesheet" href="css/opera.css" title="Opéra"> <link rel="alternate stylesheet" href="css/opera.css" title="Opéra">
<link rel="alternate stylesheet" href="css/binaural.css" title="Binaural"> <link rel="alternate stylesheet" href="css/stereo.css" title="Stéréo">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/T-2.png"> <link rel="icon" type="image/png" sizes="32x32" href="favicons/T-2.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
@@ -77,7 +77,7 @@
<option value="css/electro.css">Électro</option> <option value="css/electro.css">Électro</option>
<option value="css/retro.css">Rétro</option> <option value="css/retro.css">Rétro</option>
<option value="css/opera.css">Opéra</option> <option value="css/opera.css">Opéra</option>
<option value="css/binaural.css">Binaural</option> <option value="css/stereo.css">Stéréo</option>
</select></div> </select></div>
<div class="col-4 d-flex align-items-baseline"><input name="sfxVolumeRange" id="sfxVolumeRange" class="form-range" type="range" min="0" max="1" step="any" value="0.7"></div> <div class="col-4 d-flex align-items-baseline"><input name="sfxVolumeRange" id="sfxVolumeRange" class="form-range" type="range" min="0" max="1" step="any" value="0.7"></div>
<label for="sfxVolumeRange" class="col-2 col-form-label">Volume</label> <label for="sfxVolumeRange" class="col-2 col-form-label">Volume</label>

View File

@@ -328,7 +328,7 @@ class Tetromino {
let success = this.canMove(translation, rotation) let success = this.canMove(translation, rotation)
if (success) { if (success) {
scheduler.clearTimeout(lockDown) scheduler.clearTimeout(lockDown)
matrix.drawPiece(this, hardDropped? "trail-animation" : "") matrix.drawPiece(this, translation == TRANSLATION.DOWN? "trail-animation" : "")
this.center = success.center this.center = success.center
if (rotation) this.facing = success.facing if (rotation) this.facing = success.facing
this.lastRotation = rotation this.lastRotation = rotation