fix: 턴 입력기 불가 명령 구분 강화

Ref와 같이 현재 실행할 수 없는 명령 이름을 적색 취소선으로 표시한다. 예약 가능 상태와 desktop/mobile Chromium 회귀 검증은 유지한다.
This commit is contained in:
2026-08-27 07:23:13 +00:00
parent 4ca749f0b0
commit 42906c3ab5
2 changed files with 45 additions and 0 deletions
@@ -237,6 +237,12 @@ const commandTitle = (command: CommandAvailability) =>
cursor: pointer;
}
.command-item.blocked .command-name {
color: #e74c3c;
text-decoration-line: line-through;
text-decoration-color: #e74c3c;
}
.command-name {
font-weight: 600;
}