๐ (ui): Round table borders like the header clipping
Changes
1 file changed, +4 -1
MODIFY
src/main/resources/META-INF/resources/shark.css
+4 -1
@@ -557,7 +557,10 @@
557
557
}
558
558
559
559
table {
560
- border-collapse: collapse;
560
+ /* separate, not collapse: collapsed borders void border-radius, leaving the outer
561
+ border square while the clipped header background still renders rounded */
562
+ border-collapse: separate;
563
+ border-spacing: 0;
561
564
width: 100%;
562
565
background: var(--surface);
563
566
border: 1px solid var(--border);