diff options
-rw-r--r-- | play.html | 5 | ||||
-rw-r--r-- | ui.js | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -137,6 +137,11 @@ display: none; } +body.shift .block.known:hover { + transform: scale(2) !important; + transition: 100ms; +} + .map .block { position: absolute; z-index: 2; } .map .block.highlight { z-index: 3; } .map .block.selected { z-index: 4; } @@ -775,5 +775,6 @@ document.querySelector(".battle").classList.add(label_style+'-labels'); drag_element_with_mouse(".battle", ".battle_header"); scroll_with_middle_mouse(".grid_center"); - +init_map_zoom(); +init_shift_zoom(); init_client([ "Caesar", "Pompeius" ]); |