diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-25 23:42:40 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:39 +0100 |
commit | 11e1d172acbddb520419e458b51190e20d2c5755 (patch) | |
tree | ecbfaaf4ec1f848343d3c1b76579857d68f69511 /play.html | |
parent | 08eed041748e9e64c175d09e8877f6d4afd0cfd6 (diff) | |
download | nevsky-11e1d172acbddb520419e458b51190e20d2c5755.tar.gz |
Fix Yaroslav shield. Fade ambushed lord mats.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -304,6 +304,10 @@ body.Teutons #plan_actions .russian { display: none } filter: grayscale(50%) } +#battle_grid .mat.ambushed .background { + filter: grayscale(50%) +} + .court_body .mat.hidden .background { filter: grayscale(100%) } @@ -430,7 +434,10 @@ body.shift .mustered_vassals { margin-top: -38px; } -.mat .shield { position: absolute; } +.mat .shield { + position: absolute; + background-repeat: no-repeat; +} .mat.teutonic .shield { top: 10px; left: 6px; @@ -447,13 +454,13 @@ body.shift .mustered_vassals { filter: drop-shadow(0 0 3px white); } -.mat.russian .shield.action, .mat.yaroslav .shield.action { - background-image: url(images/shield_russian.svg); +.mat.teutonic .shield.action { + background-image: url(images/shield_teutonic.svg); filter: drop-shadow(0 0 3px white); } -.mat.teutonic .shield.action { - background-image: url(images/shield_teutonic.svg); +.mat.russian .shield.action, .mat.yaroslav .shield.action { + background-image: url(images/shield_russian.svg); filter: drop-shadow(0 0 3px white); } |