diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-20 17:20:47 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:18 +0100 |
commit | fb6132e35be5b5ecc28b29f757231a2ee94175df (patch) | |
tree | 94089962b5afc8eac3fd164cbb8739c78a50bc35 | |
parent | fcad5df0821e674c7f0fc7700707cd9be28fafd9 (diff) | |
download | hammer-of-the-scots-fb6132e35be5b5ecc28b29f757231a2ee94175df.tar.gz |
Use ID instead of class for battle dialog.
-rw-r--r-- | play.html | 16 | ||||
-rw-r--r-- | ui.js | 10 |
2 files changed, 13 insertions, 13 deletions
@@ -164,7 +164,7 @@ body.shift .block.known:hover { position: absolute; } -.battle div.block { +#battle div.block { position: relative; } @@ -244,10 +244,10 @@ div.block { /* BATTLE BOARD */ -.battle { background-color: silver; } -.battle .battle_message { background-color: lightsteelblue; } -.battle .battle_header { background-color: steelblue; color: white; font-weight: bold; } -.battle .battle_separator { background-color: steelblue; } +#battle { background-color: silver; } +#battle_message { background-color: lightsteelblue; } +#battle_header { background-color: steelblue; color: white; font-weight: bold; } +.battle_separator { background-color: steelblue; } .battle_line.enemy .battle_menu_list { min-height: 0; } .battle_reserves > td > div { height: 66px; } @@ -267,9 +267,9 @@ div.block { <form id="chat_form" action=""><input id="chat_input" autocomplete="off"></form> </div> -<table class="battle"> +<table id="battle"> <tr> -<th class="battle_header" colspan=4></th> +<th id="battle_header" colspan=4></th> <tr class="battle_reserves enemy"> <td colspan=4><div id="ER"></div></td> <tr class="battle_line enemy"> @@ -285,7 +285,7 @@ div.block { <tr class="battle_reserves friendly"> <td colspan=4><div id="FR"></div></td> <tr> -<th class="battle_message" colspan=4></th> +<th id="battle_message" colspan=4></th> </table> <div class="herald"> @@ -772,16 +772,16 @@ function on_update() { } if (game.battle) { - document.querySelector(".battle_header").textContent = game.battle.title; - document.querySelector(".battle_message").textContent = game.battle.flash; - document.querySelector(".battle").classList.add("show"); + document.getElementById("battle_header").textContent = game.battle.title; + document.getElementById("battle_message").textContent = game.battle.flash; + document.getElementById("battle").classList.add("show"); update_battle(); } else { - document.querySelector(".battle").classList.remove("show"); + document.getElementById("battle").classList.remove("show"); } } -drag_element_with_mouse(".battle", ".battle_header"); +drag_element_with_mouse("#battle", "#battle_header"); drag_element_with_mouse(".herald", ".herald_header"); scroll_with_middle_mouse("#grid_center", 2); init_map_zoom(); |