diff options
-rw-r--r-- | play.html | 4 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -50,8 +50,8 @@ body.Opposition header.your_turn { background-color: var(--opp-75); } #log .suf { background-color: var(--suf-85); } #log .opp { background-color: var(--opp-85); } -#log .tip { cursor: pointer; } -#log .tip:hover { text-decoration: underline; } +#log .tip { cursor: pointer; text-decoration: underline; } +#log .tip:hover { text-decoration: underline; font-weight: bold; } #log > .p { padding-left: 20px; text-align: right; font-style: italic; opacity: 75%; } #log > .i { padding-left: 20px; } @@ -2099,7 +2099,7 @@ function vm_discard_persistent() { function vm_campaigning_action() { if (has_player_active_campaigners()) { - log("Campaigning Action") + log_h3("Campaigning Action") goto_campaigning(game.played_card) } else { vm_next() |