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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new cdf7d23  Improved: Fix issues reported by  SonarQube analysis on 
Github (OFBIZ-12284)
cdf7d23 is described below

commit cdf7d23686da587f6ecdda1d2b681afce572937b
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Fri Aug 6 16:15:24 2021 +0200

    Improved: Fix issues reported by  SonarQube analysis on Github (OFBIZ-12284)
    
    Makes moz-linear-gradient the same than webkit-gradient. Both should be 
replaced
    by webkit-gradient linear-gradient but that's another issue...
---
 themes/flatgrey/webapp/flatgrey/style.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/themes/flatgrey/webapp/flatgrey/style.css 
b/themes/flatgrey/webapp/flatgrey/style.css
index cdc1116..6474c02 100644
--- a/themes/flatgrey/webapp/flatgrey/style.css
+++ b/themes/flatgrey/webapp/flatgrey/style.css
@@ -918,7 +918,7 @@ form .basic-table,
     border-radius: 1em;
     background: #ddd url(images/button.png) repeat-x;
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0, 
#fff), color-stop(1, #ddd));
-    background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%);
+    background: -moz-linear-gradient(to left bottom, #fff 0%, #ddd 100%);
     border: 0.1em solid;
     border-color: #ddd #bbb #999;
     cursor: pointer;
@@ -1502,7 +1502,7 @@ input[type="button"] {
     border-radius: 1.1em;
     background: #ddd url(images/button.png) repeat-x;
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0, 
#fff), color-stop(1, #ddd));
-    background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%);
+    background: -moz-linear-gradient(to left bottom, #fff 0%, #ddd 100%);
     border: 0.1em solid;
     border-color: #ddd #bbb #999;
     cursor: pointer;

Reply via email to