diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-21 14:49:28 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-05-21 17:15:16 +0200 |
commit | 20d113567bfa0130c46010e9f2b0d001c2a53bbb (patch) | |
tree | 6000bb2a0f1cf65ef701e7dad0704450c7b479cd | |
parent | e65239e53bf7f9ce53ec0157fe41fad94beea682 (diff) | |
download | server-20d113567bfa0130c46010e9f2b0d001c2a53bbb.tar.gz |
Color retreat and pass action buttons white and gray.
This should provide some visual reinforcement to help avoid misclicks.
-rw-r--r-- | public/common/battle_abc.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/public/common/battle_abc.css b/public/common/battle_abc.css index a07f16e..d6ef4b7 100644 --- a/public/common/battle_abc.css +++ b/public/common/battle_abc.css @@ -63,10 +63,9 @@ display: none; } -.battle_menu .action:hover { - background-color: red; - cursor: pointer; -} +.battle_menu .action:hover { background-color: red; } +.battle_menu .action.retreat:hover { background-color: #eee; } +.battle_menu .action.pass:hover { background-color: gray; } .battle_menu_list { margin-top: 5px; |