From 58a4a194568e98d9f40ec60a96682369aa8f1230 Mon Sep 17 00:00:00 2001 From: Marco Pisco Date: Sun, 5 Jul 2026 04:00:14 +0100 Subject: [PATCH 1/2] fix(reservas): apply ClassLink colors to page title Replaces the inline gradient on the reservations page title with a simple CSS class that uses the existing ClassLink theme colors. This keeps the header spacing and description unchanged while preserving readable title colors in light and dark mode. Tested with php -l reservas/index.php and git diff --check. Co-authored-by: Codex --- reservas/index.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/reservas/index.php b/reservas/index.php index bb3ec3e..b65d9eb 100644 --- a/reservas/index.php +++ b/reservas/index.php @@ -61,6 +61,13 @@ .stat-card-content { color: var(--stat-card-text); } + .classlink-page-title { + color: var(--primary-color); + font-weight: 700; + } + [data-bs-theme="dark"] .classlink-page-title { + color: var(--secondary-color); + } :root, html[data-bs-theme="light"] { --stat-pending-start: #fff9e6; @@ -249,9 +256,7 @@

- - As Minhas Reservas - + As Minhas Reservas

Gerir e acompanhar as suas reservas de salas

From 9c909630e30b7ced6d944216ba6ff9f30c7f5a7d Mon Sep 17 00:00:00 2001 From: Marco Pisco Date: Sun, 5 Jul 2026 04:05:38 +0100 Subject: [PATCH 2/2] fix(reservas): align title typography --- reservas/index.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/reservas/index.php b/reservas/index.php index b65d9eb..1e62b41 100644 --- a/reservas/index.php +++ b/reservas/index.php @@ -61,13 +61,6 @@ .stat-card-content { color: var(--stat-card-text); } - .classlink-page-title { - color: var(--primary-color); - font-weight: 700; - } - [data-bs-theme="dark"] .classlink-page-title { - color: var(--secondary-color); - } :root, html[data-bs-theme="light"] { --stat-pending-start: #fff9e6; @@ -255,9 +248,7 @@
-

- As Minhas Reservas -

+

As Minhas Reservas

Gerir e acompanhar as suas reservas de salas