summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-27 15:53:44 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-27 15:53:44 +0100
commit3dd89e521ab259dabcc9336082f053a24b53581f (patch)
tree68861cb04a2d5fa6fc962c01b16ba9222f7496f3
parent66ae544b0b383db1e846a028dab42e9da25586a9 (diff)
downloadvotes-for-women-3dd89e521ab259dabcc9336082f053a24b53581f.tar.gz
text decoration for cards, states and regions in log
-rw-r--r--play.html4
-rw-r--r--rules.js2
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()