You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2020/06/27 14:20:15 UTC

[ofbiz-framework] branch release18.12 updated: Fixed: With Rainbow theme, a scrollbar appears at bottom where it's not needed (OFBIZ-10174)

This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new 8358c29  Fixed: With Rainbow theme, a scrollbar appears at bottom where it's not needed (OFBIZ-10174)
8358c29 is described below

commit 8358c299e0d337f31b27ea6e6b448f06c46e7506
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Sat Jun 27 16:15:03 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.
    
    Thanks: Nameet Jain for the patch
---
 themes/rainbowstone/webapp/rainbowstone/rainbowstone-main-theme.less | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-main-theme.less b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-main-theme.less
index ed318c7..e96132d 100644
--- a/themes/rainbowstone/webapp/rainbowstone/rainbowstone-main-theme.less
+++ b/themes/rainbowstone/webapp/rainbowstone/rainbowstone-main-theme.less
@@ -777,7 +777,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;
@@ -1865,4 +1864,4 @@ input[type="button"] {
 #footer-offset {
   height: @footer-height + 10px;
   width: 100%;
-}
\ No newline at end of file
+}