diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-03 16:16:58 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | 88cb72429f29716a44fa0fa81dffeb319ccc19fe (patch) | |
tree | 8fd70fa91cfe623197ca294d9dfeb3de8745b358 /play.html | |
parent | bae03391deeb1b129b5744cb4bacf929a8b21b09 (diff) | |
download | nevsky-88cb72429f29716a44fa0fa81dffeb319ccc19fe.tar.gz |
Give priority to "selected" and "action" over "command" highlighting.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -310,14 +310,14 @@ body.Teutons #plan_actions .russian { display: none } filter: grayscale(50%) } -.mat.selected .background { - box-shadow: 0 0 0 1px #584800, 0 0 0 3px yellow; -} - .mat.command .background { box-shadow: 0 0 0 1px #584800, 0 0 0 3px gold; } +.mat.selected .background { + box-shadow: 0 0 0 1px #584800, 0 0 0 3px yellow; +} + .mat .capabilities { position: absolute; width: 372px; @@ -900,6 +900,14 @@ body.shift .mustered_vassals { transform: translateY(8px) } +.cylinder.command { + filter: + drop-shadow(2px 0px 0px gold) + drop-shadow(0px 2px 0px gold) + drop-shadow(0px -2px 0px gold) + drop-shadow(-2px 0px 0px gold); +} + .cylinder.action { filter: drop-shadow(2px 0px 0px white) @@ -916,14 +924,6 @@ body.shift .mustered_vassals { drop-shadow(-2px 0px 0px yellow); } -.cylinder.command { - filter: - drop-shadow(2px 0px 0px gold) - drop-shadow(0px 2px 0px gold) - drop-shadow(0px -2px 0px gold) - drop-shadow(-2px 0px 0px gold); -} - .cylinder.andreas { background-image: url(images/lord_teutonic_1.svg) } .cylinder.hermann.marshal { background-image: url(images/lord_teutonic_2.svg) } .cylinder.hermann { background-image: url(images/lord_teutonic_3.svg) } |