From: Erwin Dokter Date: Fri, 7 Feb 2014 14:18:27 +0000 (+0000) Subject: Vector: Restore page-fade.png as fallback background-image for IE 6-9 X-Git-Tag: 1.31.0-rc.0~16970^2 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=8e2a4f69f7a61684b147d6861afb9c9a700f4295;p=lhc%2Fweb%2Fwiklou.git Vector: Restore page-fade.png as fallback background-image for IE 6-9 Also corrects linear-gradient stop for main background from 40% to 50% to match page-fade.png previously used. Bug: 60991 Bug: 60943 Change-Id: I5cab42ee67bc1bb7dff01a7e51a2f609c96e0b18 --- diff --git a/skins/vector/components/navigation.less b/skins/vector/components/navigation.less index e2942d7980..f3a5a49d06 100644 --- a/skins/vector/components/navigation.less +++ b/skins/vector/components/navigation.less @@ -15,7 +15,10 @@ height: 5em; background-position: bottom left; background-repeat: repeat-x; - .vertical-gradient(@body-background-color, @menu-background-color, 40%, 100%); + /* This image is only a fallback (for IE 6-9), so we do not @embed it. */ + background-image: url('images/page-fade.png'); + .vertical-gradient(@body-background-color, @menu-background-color, 50%, 100%); + background-color: @body-background-color; } #mw-head-base { diff --git a/skins/vector/images/page-fade.png b/skins/vector/images/page-fade.png new file mode 100644 index 0000000000..b4a6034259 Binary files /dev/null and b/skins/vector/images/page-fade.png differ