From 7723507de4d7a297fb481e048ad0ffbf05406e09 Mon Sep 17 00:00:00 2001 From: Paul Morris Date: Fri, 3 Apr 2015 12:26:42 -0400 Subject: [PATCH] Web: CSS: fix fallback for multiple backgrounds The IE8 fallback needs to come before the multiple background settings, otherwise it interferes with them. --- Documentation/css/lilypond-website.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/css/lilypond-website.css b/Documentation/css/lilypond-website.css index 0115fbd417..46723fa47f 100644 --- a/Documentation/css/lilypond-website.css +++ b/Documentation/css/lilypond-website.css @@ -18,13 +18,13 @@ body { text-align: justify; padding: 0; margin: 0 auto; + /* fallback for IE8 which doesn't support multiple backgrounds */ + background: url(../pictures/background-top-left.png) no-repeat top left; background-color: rgb(245, 252, 242); background-image: url(../pictures/background-top-right.png), url(../pictures/background-top-left.png); background-position: top right, top left; background-repeat: no-repeat, no-repeat; - /* fallback for IE8 which doesn't support multiple backgrounds */ - background: url(../pictures/background-top-left.png) no-repeat top left; } hr { -- 2.39.5