diff options
author | Paul Morris <paulwmorris@gmail.com> | 2015-04-03 12:26:42 -0400 |
---|---|---|
committer | Phil Holmes <mail@philholmes.net> | 2015-04-03 20:31:47 +0100 |
commit | 7723507de4d7a297fb481e048ad0ffbf05406e09 (patch) | |
tree | cd0095ba901a621cc5737bb039adffb2f4e0cc11 | |
parent | 3c5bdf4e2a9a8fcf065a84b53f2f742794b00b69 (diff) |
Web: CSS: fix fallback for multiple backgrounds
The IE8 fallback needs to come before the
multiple background settings, otherwise it
interferes with them.
-rw-r--r-- | Documentation/css/lilypond-website.css | 4 |
1 files 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 { |