From e1241eddb7dd6d12578d032a6f019a72e2c3867f Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 15 Mar 2023 10:33:00 +0200 Subject: [PATCH] css fix --- frontend/less/espo/elements/panel.less | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/frontend/less/espo/elements/panel.less b/frontend/less/espo/elements/panel.less index 479499bc55..8b46c196ab 100644 --- a/frontend/less/espo/elements/panel.less +++ b/frontend/less/espo/elements/panel.less @@ -322,7 +322,7 @@ body { } } - .btn-group { + .btn-group { &, &.open { > .dropdown-toggle.btn { @@ -597,14 +597,21 @@ body { border-top-right-radius: var(--panel-border-radius); } - > .panel-body > .list-container:last-child > .list { - border-bottom-left-radius: var(--panel-border-radius); - border-bottom-right-radius: var(--panel-border-radius); + > .panel-body { + > .list-container:last-child > .list { + border-bottom-left-radius: var(--panel-border-radius); + border-bottom-right-radius: var(--panel-border-radius); - > table, - > .list-group, - > .list-group:last-child > .list-group-item:last-child, - > .show-more > a { + > table, + > .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); + } + } + + > .no-margin > table { border-bottom-left-radius: var(--panel-border-radius); border-bottom-right-radius: var(--panel-border-radius); }