add back gradient for log in page in Firefox, fix accidental removal

This commit is contained in:
Jan-Christoph Borchardt 2016-01-05 10:44:10 +01:00
parent d4034ffca0
commit 8f7ee523fe
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ body {
#body-login {
text-align: center;
background: #1d2d44; /* Old browsers */
background: -moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */
background: linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */