From dd75237c3492140140c7413d788bd961692048d8 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 26 Mar 2024 07:50:04 +0100 Subject: [PATCH] Fix table header text-align (#30084) Fix regression from https://github.com/go-gitea/gitea/pull/30047. Apparently tables have certain user-agent styles that center inside `` etc. Restored the original fomantic rules for these. Before: Screenshot 2024-03-25 at 21 59 33 After: Screenshot 2024-03-25 at 21 59 40 --- web_src/css/modules/table.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web_src/css/modules/table.css b/web_src/css/modules/table.css index 962a5f52a6..eabca31a17 100644 --- a/web_src/css/modules/table.css +++ b/web_src/css/modules/table.css @@ -23,11 +23,13 @@ } .ui.table > thead, .ui.table > tbody { + text-align: inherit; vertical-align: inherit; } .ui.table > thead > tr > th { background: var(--color-box-header); + text-align: inherit; color: var(--color-text); padding: 6px 5px; vertical-align: inherit; @@ -52,6 +54,7 @@ .ui.table > tfoot > tr > td { border-top: 1px solid var(--color-secondary); background: var(--color-box-body); + text-align: inherit; color: var(--color-text); padding: 0.78571429em; vertical-align: inherit; @@ -78,6 +81,7 @@ .ui.table > tbody > tr > td { border-top: 1px solid var(--color-secondary-alpha-50); padding: 6px 5px; + text-align: inherit; } .ui.table > tr:first-child > td, .ui.table > tbody > tr:first-child > td {