From 6ce3b09cb8fe93bbcbdaad9cfcba1335bb7b8d04 Mon Sep 17 00:00:00 2001 From: Spirito35 Date: Tue, 20 Jan 2026 17:52:02 +0100 Subject: [PATCH] =?UTF-8?q?Always=20fixing=20you~=20=E2=99=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../levelup-advanced-5th-edition.css | 14 ++-- .../levelup-advanced-5th-edition.html | 68 ++++++++++--------- 2 files changed, 44 insertions(+), 38 deletions(-) diff --git a/levelup-advanced-5th-edition/levelup-advanced-5th-edition.css b/levelup-advanced-5th-edition/levelup-advanced-5th-edition.css index 86252d8024..570ac56a37 100644 --- a/levelup-advanced-5th-edition/levelup-advanced-5th-edition.css +++ b/levelup-advanced-5th-edition/levelup-advanced-5th-edition.css @@ -781,6 +781,7 @@ text-align:left; .ui-dialog .charsheet .sheet-talent-card input[type="checkbox"]:checked + span { justify-content: left; + display: flex; } .ui-dialog .charsheet button[type="roll"] { @@ -2066,11 +2067,14 @@ input.sheet-inputchar2 { .sheet-talent-card-line4 span.sheet-isconcentration, .sheet-talent-card-line4 span.sheet-isritual { - background-color: transparent; - border: none; - padding: 0; - margin: 0; - text-align: center !important; + background-color: transparent; + border: none; + padding: 0; + margin: 0; + font-size: 10px!important; + line-height: 10px!important; + justify-content: center!important; + align-items: center!important; } .sheet-talent-card2 .sheet-talent-source { diff --git a/levelup-advanced-5th-edition/levelup-advanced-5th-edition.html b/levelup-advanced-5th-edition/levelup-advanced-5th-edition.html index e052eb3bb1..a7a790eba0 100644 --- a/levelup-advanced-5th-edition/levelup-advanced-5th-edition.html +++ b/levelup-advanced-5th-edition/levelup-advanced-5th-edition.html @@ -1604,7 +1604,7 @@ - + @@ -4312,7 +4312,7 @@ - + @@ -4691,41 +4691,43 @@
- +const updateAll = () => sections.forEach(s => updateSection(s.key, s.label)); + +const events = ["sheet:opened"] + .concat(sections.flatMap(s => [`change:repeating_${s.key}`, `remove:repeating_${s.key}`])) + .join(" "); + +on(events, updateAll); +