From 3dd89e521ab259dabcc9336082f053a24b53581f Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:53:44 +0100 Subject: text decoration for cards, states and regions in log --- play.html | 4 ++-- rules.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/play.html b/play.html index 3ae9cb4..347a8a6 100644 --- a/play.html +++ b/play.html @@ -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; } diff --git a/rules.js b/rules.js index 6810722..73e258a 100644 --- a/rules.js +++ b/rules.js @@ -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() -- cgit v1.2.3