diff options
author | moisseev <moiseev@mezonplus.ru> | 2024-03-04 19:30:57 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2024-03-04 19:32:32 +0300 |
commit | c509c904a3fbf2ae099f33bd020abb9ae790d998 (patch) | |
tree | fd950222f65b0429460624ac14ff98e1e4ed432d | |
parent | 1fc2eaa7b39eb81deafe925bb56fc8d7cd3de078 (diff) | |
download | rspamd-c509c904a3fbf2ae099f33bd020abb9ae790d998.tar.gz rspamd-c509c904a3fbf2ae099f33bd020abb9ae790d998.zip |
[Minor] Fix status tables borders
-rw-r--r-- | interface/css/rspamd.css | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 767c11175..92adf52fa 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -291,24 +291,33 @@ table#symbolsTable input[type="number"] { margin-right: 9px; } +.status-table thead th:first-child, +.status-table td:first-child { + border-left: none; +} +.status-table thead th:last-child, .status-table td:last-child { border-right: none; } +.status-table thead tr { + border-top: none; +} +.status-table tr:last-child, .status-table tr:last-child td { border-bottom: none; } -.status-table thead th:last-child { - border-right: none; -} + .footable-header, .footable tr:not(.footable-detail-row) > td { font-size: 11px; } -.status-table tr:last-child td:first-child { - border-radius: 0 0 0 calc(.25rem - 1px); -} + .status-table tr:last-child td:last-child { - border-radius: 0 0 calc(.25rem - 1px) 0; + border-radius: 0 0 calc(var(--bs-border-radius) + 1px) 0; +} +.status-table :not(:has([rowspan])) tr:last-child td:first-child, +.status-table :nth-last-child(1 of tr:has([rowspan])) td:first-child { + border-radius: 0 0 0 calc(var(--bs-border-radius) + 1px); } /* RRD summary */ |