1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-12 03:42:05 +02:00

[ticket/15404] fix gradients

PHPBB3-15404
This commit is contained in:
Michael Miday 2017-11-01 23:30:41 -05:00 committed by Marc Alexander
parent 8b76c54240
commit 9a1acae8af
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -97,13 +97,15 @@ th a:hover {
.headerbar,
.forumbg {
background-color: #13a4ec;
background-image: linear-gradient(to bottom, #80d5ff 0%, #0077b3 2px, #13a4ec 92px, #13a4ec 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#80d5ff), color-stop(0.1%, #0077b3), color-stop(30%, #13a4ec), to(#13a4ec));
background-image: linear-gradient(to bottom, #80d5ff 0%, #0077b3 0.1%, #13a4ec 30%, #13a4ec 100%);
background-repeat: repeat-x;
}
.forabg {
background-color: #0077b3;
background-image: linear-gradient(to bottom, #80d5ff 0%, #13a4ec 2px, #0077b3 92px, #0077b3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#80d5ff), color-stop(0.1%, #13a4ec), color-stop(30%, #0077b3), to(#0077b3));
background-image: linear-gradient(to bottom, #80d5ff 0%, #13a4ec 0.1%, #0077b3 30%, #0077b3 100%);
background-repeat: repeat-x;
}