diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-20 12:37:26 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:19:38 +0100 |
commit | 9ecbee1517966c892c60ddc2310e03d57b0de413 (patch) | |
tree | ed5f1ff4c1ae68113291936b201c336c7a50441d /play.html | |
parent | 64186a7f490167a04e5dde149079091d9b2d9928 (diff) | |
download | crusader-rex-9ecbee1517966c892c60ddc2310e03d57b0de413.tar.gz |
crusader: Simplify block layout by sending all info to client.
Trust the user not to cheat...
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -133,7 +133,8 @@ body.shift .block.known:hover { .map .block { position: absolute; z-index: 2; } .map .block.highlight { z-index: 3; } .map .block.selected { z-index: 4; } -.map .block.known:hover { z-index: 5; } +.map .block.known { z-index: 5; } +.map .block.known:hover { z-index: 6; } .block.highlight { cursor: pointer; box-shadow: 0px 0px 4px 1px white; } |