From b458fda74b10dc75e61342968f9fa2a29fd00c55 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 14 May 2011 12:55:53 -0400 Subject: - Patch #1150340 by aspilicious: CSS gradient background doesn't work with newest opera and IE versions. --- themes/bartik/css/colors.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'themes') diff --git a/themes/bartik/css/colors.css b/themes/bartik/css/colors.css index 7cd1cd2d7..fd83374a5 100644 --- a/themes/bartik/css/colors.css +++ b/themes/bartik/css/colors.css @@ -23,8 +23,12 @@ body.overlay { } #header { background-color: #48a9e4; - background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0779bf), to(#48a9e4)); - background-image: -moz-linear-gradient(-90deg, #0779bf, #48a9e4); + background-image: -moz-linear-gradient(top, #0779bf 0%, #48a9e4 100%); + background-image: -ms-linear-gradient(top, #0779bf 0%, #48a9e4 100%); + background-image: -o-linear-gradient(top, #0779bf 0%, #48a9e4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0779bf), color-stop(1, #48a9e4)); + background-image: -webkit-linear-gradient(top, #0779bf 0%, #48a9e4 100%); + background-image: linear-gradient(top, #0779bf 0%, #48a9e4 100%); } a { color: #0071B3; -- cgit v1.2.3