This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release17.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release17.12 by this push: new 4a71a95 Fixed: With Rainbow theme, a scrollbar appears at bottom where it's not needed (OFBIZ-10174) 4a71a95 is described below commit 4a71a959a692371e3a3ac1fa78d5502a0707c8b3 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sat Jun 27 16:19:41 2020 +0200 Fixed: With Rainbow theme, a scrollbar appears at bottom where it's not needed (OFBIZ-10174) With Rainbow theme, even in large screens, a scrollbar appears at bottom where it's useless. The CSS which is adding a border-right on the application bar is adding extra 1px width causing this issue. Attached the patch to remove extra width for the same. Changes made by hand --- themes/rainbowstone/webapp/rainbowstone/rainbowstone-amber.less | 1 - themes/rainbowstone/webapp/rainbowstone/rainbowstone-emerald.less | 1 - themes/rainbowstone/webapp/rainbowstone/rainbowstone-ruby.less | 1 - themes/rainbowstone/webapp/rainbowstone/rainbowstone-saphir.less | 1 - 4 files changed, 4 deletions(-) diff --git a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-amber.less b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-amber.less index c9a9bf7..051d6a0 100644 --- a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-amber.less +++ b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-amber.less @@ -885,7 +885,6 @@ a.user-pref-btn { #app-navigation { height: @sub-app-bar-height; - border-right: solid 1px @black; border-bottom: solid 1px @black; width: 100%; min-width: @min-container-width; diff --git a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-emerald.less b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-emerald.less index 67c76fd..c1641c5 100644 --- a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-emerald.less +++ b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-emerald.less @@ -886,7 +886,6 @@ a.user-pref-btn { #app-navigation { height: @sub-app-bar-height; - border-right: solid 1px @black; border-bottom: solid 1px @black; width: 100%; min-width: @min-container-width; diff --git a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-ruby.less b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-ruby.less index d58c588..1f6ed1e 100644 --- a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-ruby.less +++ b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-ruby.less @@ -887,7 +887,6 @@ a.user-pref-btn { #app-navigation { height: @sub-app-bar-height; - border-right: solid 1px @black; border-bottom: solid 1px @black; width: 100%; min-width: @min-container-width; diff --git a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-saphir.less b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-saphir.less index f96b149..b2dec1f 100644 --- a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-saphir.less +++ b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-saphir.less @@ -884,7 +884,6 @@ a.user-pref-btn { #app-navigation { height: @sub-app-bar-height; - border-right: solid 1px @black; border-bottom: solid 1px @black; width: 100%; min-width: @min-container-width;