From 2028f590ca2173abd243c6445926cd033b3c958a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 21 Dec 2023 15:31:24 +0100 Subject: [PATCH] css: Scope h* title styles Avoids interfering if they are used by upstream libraries in other places. --- data/resources/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/resources/style.css b/data/resources/style.css index 939485e8..bd3b4928 100644 --- a/data/resources/style.css +++ b/data/resources/style.css @@ -582,32 +582,32 @@ typing-row .cutout { padding: 2px; } -.h1 { +room-history-row .h1, .related-event-content .h1 { font-weight: 800; font-size: 15pt; } -.h2 { +room-history-row .h2, .related-event-content .h2 { font-weight: 800; font-size: 14pt; } -.h3 { +room-history-row .h3, .related-event-content .h3 { font-weight: 700; font-size: 14pt; } -.h4 { +room-history-row .h4, .related-event-content .h4 { font-weight: 700; font-size: 13pt; } -.h5 { +room-history-row .h5, .related-event-content .h5 { font-weight: 700; font-size: 12pt; } -.h6 { +room-history-row .h6, .related-event-content .h6 { font-weight: 700; font-size: 11pt; }