From e8760c66dc7cae87ab400a1be7a449db933785b5 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 26 Sep 2023 21:20:36 +0200 Subject: Color unit names in log. --- play.css | 5 ++++- play.js | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/play.css b/play.css index 7c9cc93..2fbf2b2 100644 --- a/play.css +++ b/play.css @@ -19,9 +19,12 @@ body.Coalition header.your_turn { background-color: white; } #log div { padding-left: 20px; text-indent: -12px; } #log div.i { padding-left: 32px; text-indent: -12px; } +#log span.french { background-color: hsl(195, 72%, 90%); padding: 0 2px } +#log span.anglo { background-color: white; padding: 0 2px } +#log span.prussian { background-color: gainsboro; padding: 0 2px } + main { background-color: dimgray; - background-color: hsl(39, 10%, 40%); } #mapwrap { diff --git a/play.js b/play.js index 5d38bd3..b0228af 100644 --- a/play.js +++ b/play.js @@ -525,6 +525,9 @@ function on_log(text) { text = text.replace(/P(\d+)/g, sub_piece) text = text.replace(/\bD\d\b/g, sub_dice) + text = text.replace(/French/g, 'French') + text = text.replace(/Coalition/g, 'Coalition') + if (text.match(/^\.h1 /)) { text = text.substring(4) p.className = "h1" -- cgit v1.2.3