From: Paul Morris Date: Fri, 3 Apr 2015 16:26:42 +0000 (-0400) Subject: Web: CSS: fix fallback for multiple backgrounds X-Git-Tag: release/2.19.18-1~2^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7723507de4d7a297fb481e048ad0ffbf05406e09;p=lilypond.git Web: CSS: fix fallback for multiple backgrounds The IE8 fallback needs to come before the multiple background settings, otherwise it interferes with them. --- 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 {