From bbe9281cb08a1b9c4972fbbc10da196087de3d71 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 25 Apr 2024 21:32:30 +0300 Subject: [PATCH] css fix, border radius --- frontend/less/espo/elements/panel.less | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/less/espo/elements/panel.less b/frontend/less/espo/elements/panel.less index 90de406ccb..25e79aff66 100644 --- a/frontend/less/espo/elements/panel.less +++ b/frontend/less/espo/elements/panel.less @@ -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 {