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 4c8141e Fixed: wrong image name in css. missing map file (OFBIZ-11881) 4c8141e is described below commit 4c8141e07a38348f9e23c6ad1c3cd5a1bcf79663 Author: Jacques Le Roux <[hidden email]> AuthorDate: Wed Jul 15 21:08:16 2020 +0200 Fixed: wrong image name in css. missing map file (OFBIZ-11881) The 'background-image:url("/d.png")' thing has already been fixed with OFBIZ-10895 but wrongly backported it seems. Thanks: Alex Bodnaru for report --- .../webapp/common/js/jquery/plugins/jsTree/themes/apple/style.css | 2 +- .../webapp/common/js/jquery/plugins/jsTree/themes/classic/style.css | 2 +- .../webapp/common/js/jquery/plugins/jsTree/themes/default-rtl/style.css | 2 +- .../webapp/common/js/jquery/plugins/jsTree/themes/default/style.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/apple/style.css b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/apple/style.css index 3c69627..d0c4163 100644 --- a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/apple/style.css +++ b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/apple/style.css @@ -6,7 +6,7 @@ .jstree-apple > ul { background:url("bg.jpg") left top repeat; } .jstree-apple li, -.jstree-apple ins { background-image:url("/d.png"); background-repeat:no-repeat; background-color:transparent; } +.jstree-apple ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } .jstree-apple li { background-position:-90px 0; background-repeat:repeat-y; } .jstree-apple li.jstree-last { background:transparent; } .jstree-apple .jstree-open > ins { background-position:-72px 0; } diff --git a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/classic/style.css b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/classic/style.css index 2f206549..0351b4c 100644 --- a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/classic/style.css +++ b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/classic/style.css @@ -5,7 +5,7 @@ */ .jstree-classic li, -.jstree-classic ins { background-image:url("/d.png"); background-repeat:no-repeat; background-color:transparent; } +.jstree-classic ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } .jstree-classic li { background-position:-90px 0; background-repeat:repeat-y; } .jstree-classic li.jstree-last { background:transparent; } .jstree-classic .jstree-open > ins { background-position:-72px 0; } diff --git a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default-rtl/style.css b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default-rtl/style.css index 2793a7d..1343cf3 100644 --- a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default-rtl/style.css +++ b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default-rtl/style.css @@ -5,7 +5,7 @@ */ .jstree-default-rtl li, -.jstree-default-rtl ins { background-image:url("/d.png"); background-repeat:no-repeat; background-color:transparent; } +.jstree-default-rtl ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } .jstree-default-rtl li { background-position:-90px 0; background-repeat:repeat-y; } .jstree-default-rtl li.jstree-last { background:transparent; } .jstree-default-rtl .jstree-open > ins { background-position:-72px 0; } diff --git a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default/style.css b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default/style.css index 4f7ebb7..7ef6a04 100644 --- a/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default/style.css +++ b/themes/common/webapp/common/js/jquery/plugins/jsTree/themes/default/style.css @@ -5,7 +5,7 @@ */ .jstree-default li, -.jstree-default ins { background-image:url("/d.png"); background-repeat:no-repeat; background-color:transparent; } +.jstree-default ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } .jstree-default li { background-position:-90px 0; background-repeat:repeat-y; } .jstree-default li.jstree-last { background:transparent; } .jstree-default .jstree-open > ins { background-position:-72px 0; } |
Free forum by Nabble | Edit this page |