diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-12-18 17:31:11 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | 62f94aa3b8333930cb5007ba9e1425e9787d2346 (patch) | |
tree | 2431be87550dc72c47a718a1248dab05ff6a71d2 /play.html | |
parent | 0046b05221e91324ec3dacaf49fa8b8dbf6ca625 (diff) | |
download | nevsky-62f94aa3b8333930cb5007ba9e1425e9787d2346.tar.gz |
Highlight action cards.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -164,7 +164,6 @@ body.Teutons #plan_actions .russian { display: none } } .mat .capabilities { - pointer-events: none; position: absolute; width: 372px; height: 260px; @@ -519,9 +518,12 @@ body.shift .mustered_vassals { } .card.disabled { - filter: grayscale(100%) brightness(66%); + filter: brightness(80%); } +.card.action.teutonic { background-color: #e1e6e8; box-shadow: 0 0 0 1px #666a6c, 0 0 0 3px white; } +.card.action.russian { background-color: #e1d6c1; box-shadow: 0 0 0 1px #665c4a, 0 0 0 3px white; } + .card.selected.teutonic { background-color: #e1e6e8; box-shadow: 0 0 0 1px #666a6c, 0 0 0 3px yellow; } .card.selected.russian { background-color: #e1d6c1; box-shadow: 0 0 0 1px #665c4a, 0 0 0 3px yellow; } |