Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/4c6287827c2b414138a8691995e88a17c5bf40f1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
35 additions and
17 deletions
@ -25,20 +25,17 @@
-webkit-border-bottom-left-radius : 8px ;
}
. openCloseWrapper {
width : 100 % ;
text-align : center ;
font-size : 12px ;
font-weight : bold ;
color : # FFFFFF ;
}
. sliderButtonContainer {
. sliderButton {
width : 70px ;
margin-left : auto ;
margin-right : auto ;
background-color : # 333333 ;
cursor : pointer ;
font-size : 12px ;
font-weight : bold ;
text-align : center ;
color : # FFFFFF ;
@ * Rounded Edges * @
border : 1px solid # 444444 ;
@ -1,13 +1,36 @@
$ ( document ) . ready ( function ( ) {
$ ( ".sliderButton Container ") . live ( 'click' , function ( ) {
sliderToggle ( ) ;
$ ( ".sliderButton ") . live ( 'click' , function ( ) {
sliderToggle ( this ) ;
} ) ;
} ) ;
function sliderToggle ( ) {
$ ( '.sliderContent' ) . slideToggle ( 'slow' ) ;
function sliderToggle ( sliderButton ) {
//Get sliderContent
var sliderContent = $ ( sliderButton ) . siblings ( '.sliderContent' ) ;
//Open the slider
sliderContent . slideToggle ( 'slow' ) ;
//Change the slider Image
$ ( ".sliderButtonContainer" ) . children ( '.sliderImage' ) . toggleClass ( 'sliderOpened sliderClosed' ) ;
//Focus in the search box
$ ( sliderContent ) . children ( '.localSeriesLookup' ) . focus ( ) ;
//Hide the sliders
hideSliders ( sliderContent ) ;
//Prevent the Address Bar from changing
return false ;
}
function hideSliders ( newlyOpenedSlider ) {
$ ( '.sliderContent' ) . each ( function ( index , value ) {
var newlyOpenedSliderId = $ ( newlyOpenedSlider ) . parent ( '.top-slider' ) . attr ( 'id' ) ;
var id = $ ( this ) . parent ( '.top-slider' ) . attr ( 'id' ) ;
//If the ID's of the top-sliders don't match then hide it
if ( id != newlyOpenedSliderId )
$ ( this ) . slideUp ( ) ;
} ) ;
}
@ -21,9 +21,7 @@
Local Series Search
<input class="localSeriesLookup" type="text" />
</div>
<div class="openCloseWrapper">
<div class="sliderButtonContainer">
Search<div class="sliderImage sliderClosed"></div>
</div>
<div class="sliderButton">
Search<div class="sliderImage sliderClosed"></div>
</div>
</div>