Commit 82560defb3c05ed3db4ba5f4afa11ea8691bbe3f
1 parent
3fa08b0f7a
Exists in
master
Remplace le gradient par une coulur fixe dans le thème bleu.
Si on a une couleur fixe et que l'image n'est pas dispo, le browser fallback sur la couleur mais si on a un gradient ça ne marche pas.
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
templates/html/common-blue/zim-variables.css
... | ... | @@ -20,7 +20,8 @@ |
20 | 20 | * --main-body-background-color |
21 | 21 | * will be used |
22 | 22 | */ |
23 | - --main-body-background-color: linear-gradient(to right,#8eb7c2,white,white,#8eb7c2); /* Color of the background body */ | |
23 | + /*--main-body-background-color: linear-gradient(to right,#8eb7c2,white,white,#8eb7c2); */ | |
24 | + --main-body-background-color: #8eb7c2; /* Color of the background body */ | |
24 | 25 | --main-body-background-position: center; |
25 | 26 | --main-body-background-repeat: repeat-y; |
26 | 27 |