diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-20 17:20:47 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:08:56 +0100 |
commit | fe837a001a035008642d831f4938fe6010787a5d (patch) | |
tree | 7617ae12960eb088c0d4c9c884c963ee5f1dc682 /play.html | |
parent | 0f402a882f6c5ac3fa8dcec8731b8adcf62ef834 (diff) | |
download | julius-caesar-fe837a001a035008642d831f4938fe6010787a5d.tar.gz |
Use ID instead of class for battle dialog.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -84,10 +84,10 @@ /* BATTLE BOARD */ -.battle { background-color: tan; } -.battle .battle_message { background-color: wheat; } -.battle .battle_header { background-color: brown; color: wheat; font-weight: bold; } -.battle .battle_separator { background-color: brown; } +#battle { background-color: tan; } +#battle_message { background-color: wheat; } +#battle_header { background-color: brown; color: wheat; font-weight: bold; } +.battle_separator { background-color: brown; } .battle_line.enemy .battle_menu_list { min-height: 0; } .battle_reserves .battle_menu_list { min-height: 0; } @@ -160,7 +160,7 @@ body.shift .block.known:hover { z-index: 100; } -.battle .block { position: relative; } +#battle .block { position: relative; } #map .block { position: absolute; z-index: 2; } #map .block.highlight { z-index: 3; } #map .block.selected { z-index: 4; } @@ -239,9 +239,9 @@ body.Observer .columbia-labels .known.jupiter.Cleopatra { border: 3px solid #822 <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"> @@ -259,7 +259,7 @@ body.Observer .columbia-labels .known.jupiter.Cleopatra { border: 3px solid #822 <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 id="grid_window"> |