Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/34d5fb1aa0c44e9b683e92cc52682fbb209ede1b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
19 additions and
15 deletions
@ -72,21 +72,24 @@
}
#scroll-up {
.clickable;
&:hover {
text-decoration : none;
.opacity (0.4);
i {
.clickable;
.opacity(0.3);
margin: 0px 20px;
&:hover {
.opacity(0.4);
}
}
.opacity (0.2);
position : fixed;
z-index : 9999;
bottom : 5 0px;
right : 5 0px;
bottom : 3 0px;
right : 0px;
display : none;
font-size : 56px;
color : white ;
color : gray ;
}
.control-panel-visible {
@ -55,9 +55,9 @@
< div id = "modal-region2" > < / div >
< / div >
< / div >
< a id = "scroll-up" title = "Back to the top! ">
< i class = "icon-sonarr-back-to-top "> < / i >
< / a >
< div id = "scroll-up ">
< i class = "icon-sonarr-back-to-top visible-lg-inline" title = "Back to the top! "> < / i >
< / div >
< / div >
< div class = "footer" >
< div class = "container-fluid" >
@ -3,13 +3,14 @@ var _ = require('underscore');
$ ( document ) . ready ( function ( ) {
var _window = $ ( window ) ;
var _scrollButton = $ ( '#scroll-up' ) ;
var _scrollContainer = $ ( '#scroll-up' ) ;
var _scrollButton = $ ( '#scroll-up i' ) ;
var _scrollHandler = function ( ) {
if ( _window . scrollTop ( ) > 1 00) {
_scroll Button . fadeIn ( ) ;
if ( _window . scrollTop ( ) > 4 00) {
_scroll Container . fadeIn ( ) ;
} else {
_scroll Button . fadeOut ( ) ;
_scroll Container . fadeOut ( ) ;
}
} ;