From 2c840f549c9d7e19011b3646ce425c92f4070580 Mon Sep 17 00:00:00 2001 From: Marco Pisco Date: Sun, 5 Jul 2026 04:00:14 +0100 Subject: [PATCH 1/2] fix(admin): align pedidos title styling Aligns the pedidos page title with its description by replacing the nested inline span with a simple title class.\n\nUses the existing ClassLink primary gradient and removes extra title spacing so the header layout stays aligned without shifting the description or page content.\n\nTested with php -l admin/pedidos.php.\n\nCo-authored-by: Codex --- admin/pedidos.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/admin/pedidos.php b/admin/pedidos.php index 41a5065..92abfae 100644 --- a/admin/pedidos.php +++ b/admin/pedidos.php @@ -134,6 +134,16 @@ background-color: #0d6efd; color: white; } + .classlink-page-title { + display: inline-block; + margin: 0 0 0.25rem; + line-height: 1.2; + text-align: left; + background: var(--gradient-primary); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + }
@@ -141,11 +151,7 @@
-

- - Gestão de Pedidos - -

+

Gerir e aprovar pedidos de reserva de salas

From 55db9fb4bf17835ccace56459e8df17e22f6ada5 Mon Sep 17 00:00:00 2001 From: Marco Pisco Date: Sun, 5 Jul 2026 04:07:07 +0100 Subject: [PATCH 2/2] fix(admin): match pedidos title to admin style --- admin/pedidos.php | 41 +++++++++++++++++++---------------------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/admin/pedidos.php b/admin/pedidos.php index 92abfae..3be1b85 100644 --- a/admin/pedidos.php +++ b/admin/pedidos.php @@ -134,32 +134,29 @@ background-color: #0d6efd; color: white; } - .classlink-page-title { - display: inline-block; - margin: 0 0 0.25rem; - line-height: 1.2; + .pedidos-admin-shell { + margin-left: 10%; + margin-right: 10%; text-align: left; - background: var(--gradient-primary); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; + } + .pedidos-admin-header { + margin-bottom: 1rem; + } + .pedidos-admin-header h3 { + margin-bottom: 0; } -
-
-
-
-
- -

Gerir e aprovar pedidos de reserva de salas

-
-
- - - -
-
+
+
+
+

Gestão de Pedidos

+

Gerir e aprovar pedidos de reserva de salas

+
+
+ + +