From 95ed44d2ec459ffa9eb31f81ca7905b6ade41c5c Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 31 Aug 2022 15:40:01 +0300 Subject: [PATCH] css fix --- frontend/less/espo/custom.less | 8 ++++++++ frontend/less/glass/custom.less | 8 ++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/frontend/less/espo/custom.less b/frontend/less/espo/custom.less index e4a1752f08..d498df88a6 100644 --- a/frontend/less/espo/custom.less +++ b/frontend/less/espo/custom.less @@ -2067,6 +2067,10 @@ textarea.auto-height { .show-more a { border-bottom-right-radius: 0; + + @media screen and (max-width: (@screen-sm-min - 1px)) { + border-bottom-left-radius: 0; + } } } @@ -2640,6 +2644,10 @@ table.table td.cell .html-container { .show-more a { border-bottom-right-radius: 0; + + @media screen and (max-width: (@screen-sm-min - 1px)) { + border-bottom-left-radius: 0; + } } } } diff --git a/frontend/less/glass/custom.less b/frontend/less/glass/custom.less index 65098566ca..b6d5cfcbe1 100644 --- a/frontend/less/glass/custom.less +++ b/frontend/less/glass/custom.less @@ -21,7 +21,9 @@ body[data-navbar="side"].minimized.side-menu-opened { body[data-navbar="top"] { #navbar > .navbar { - backdrop-filter: @backdrop-filter-2; + @media screen and (min-width: @screen-sm-min) { + backdrop-filter: @backdrop-filter-2; + } } } @@ -102,7 +104,9 @@ body { #navbar { .navbar-right { - backdrop-filter: @backdrop-filter !important; + @media screen and (min-width: @screen-sm-min) { + backdrop-filter: @backdrop-filter !important; + } } }