css fix, border radius

This commit is contained in:
Yuri Kuznetsov
2024-04-25 21:32:30 +03:00
parent b2a6ababd2
commit bbe9281cb0
+12 -1
View File
@@ -495,13 +495,24 @@ body {
border-bottom-right-radius: var(--panel-border-radius);
> table:not(:has(+ .show-more)),
> table:not(:has(+ .show-more)) tr:last-child td,
> table:has(+ .show-more.hidden),
> .list-group,
> .list-group:last-child > .list-group-item:last-child,
> .show-more > a {
border-bottom-left-radius: var(--panel-border-radius);
border-bottom-right-radius: var(--panel-border-radius);
}
> table:not(:has(+ .show-more)) tr:last-child,
> table:has(+ .show-more.hidden) tr:last-child {
> td:first-child {
border-bottom-left-radius: var(--panel-border-radius);
}
> td:last-child {
border-bottom-right-radius: var(--panel-border-radius);
}
}
}
> .no-margin > table {