From 55dd493e5d705b3bd31f8c50aec071a308531eb3 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 18 Feb 2015 12:51:23 +0000 Subject: [PATCH] Make custom theme colors for login page supports Cross-Browser styles --- pixelegg/inc/class.pixelegg_framework.inc.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pixelegg/inc/class.pixelegg_framework.inc.php b/pixelegg/inc/class.pixelegg_framework.inc.php index 9793555879..b4e550cd06 100755 --- a/pixelegg/inc/class.pixelegg_framework.inc.php +++ b/pixelegg/inc/class.pixelegg_framework.inc.php @@ -132,11 +132,17 @@ div#egw_fw_header, div.egw_fw_ui_category:hover,#loginMainDiv,#loginMainDiv #div /*Login background*/ #loginMainDiv #divAppIconBar #divLogo img[src$='svg'] { background-image: -webkit-linear-gradient(top, $color, $color); + background-image: -moz-linear-gradient(top, $color, $color); + background-image: -o-linear-gradient(top,$color, $color); + background-image: linear-gradient(to bottom, $color, $color); } /*Center box in login page*/ #loginMainDiv div#centerBox { background-image: -webkit-linear-gradient(top,$color_hex_dark,$color_hex_darker); + background-image: -moz-linear-gradient(top,$color_hex_dark,$color_hex_darker); + background-image: -o-linear-gradient(top,$color_hex_dark,$color_hex_darker); + background-image: linear-gradient(to bottom, $color_hex_dark,$color_hex_darker); border-top: solid 1px $color_hex_darker; border-left: solid 1px $color_hex_darker; border-right: solid 1px $color_hex_darker;