mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge pull request #93 from Supremicus/feature/FixNavbarGradients
This commit is contained in:
commit
b65c00a7a1
3 changed files with 13 additions and 4 deletions
|
@ -20,6 +20,7 @@
|
|||
* Remove config Backup & Restore
|
||||
* Fix article removal for sorting on Display Show, and API pages
|
||||
* Fix visual positioning of sprites on Config page
|
||||
* Fix missing navbar gradients for all browsers
|
||||
|
||||
[develop changelog]
|
||||
* Add TVRage network name standardization
|
||||
|
|
|
@ -1862,8 +1862,12 @@ input, textarea, select, .uneditable-input {
|
|||
.navbar-default {
|
||||
background-color: #15528F;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#297AB8', endColorstr='#15528F');
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#297AB8), to(#15528F));
|
||||
background: -moz-linear-gradient(top, #297AB8, #15528F);
|
||||
background-image: -ms-linear-gradient(top, #297AB8 0%, #15528F 100%);
|
||||
background-image: -moz-linear-gradient(top, #297AB8 0%, #15528F 100%);
|
||||
background-image: -o-linear-gradient(top, #297AB8 0%, #15528F 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297AB8), color-stop(1, #15528F));
|
||||
background-image: -webkit-linear-gradient(top, #297AB8 0%, #15528F 100%);
|
||||
background-image: linear-gradient(to bottom, #297AB8 0%, #15528F 100%);
|
||||
border-color: #3e3f3a;
|
||||
}
|
||||
|
||||
|
|
|
@ -1840,8 +1840,12 @@ input, textarea, select, .uneditable-input {
|
|||
.navbar-default {
|
||||
background-color: #333333;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#333333');
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
|
||||
background: -moz-linear-gradient(top, #555, #333);
|
||||
background-image: -ms-linear-gradient(top, #555555 0%, #333333 100%);
|
||||
background-image: -moz-linear-gradient(top, #555555 0%, #333333 100%);
|
||||
background-image: -o-linear-gradient(top, #555555 0%, #333333 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #555555), color-stop(1, #333333));
|
||||
background-image: -webkit-linear-gradient(top, #555555 0%, #333333 100%);
|
||||
background-image: linear-gradient(to bottom, #555555 0%, #333333 100%);
|
||||
border-color: #3e3f3a;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue