]> git.donarmstrong.com Git - lilypond.git/commitdiff
Web: CSS: fix fallback for multiple backgrounds
authorPaul Morris <paulwmorris@gmail.com>
Fri, 3 Apr 2015 16:26:42 +0000 (12:26 -0400)
committerPhil Holmes <mail@philholmes.net>
Fri, 3 Apr 2015 19:31:47 +0000 (20:31 +0100)
The IE8 fallback needs to come before the
multiple background settings, otherwise it
interferes with them.

Documentation/css/lilypond-website.css

index 0115fbd417aa59500bc3f812aada29bfed2bc14d..46723fa47f48969c8b60e45cc2b1d683ba4e9b44 100644 (file)
@@ -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 {