Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/5153afd3f196a7b18c43b2af2e8d394de529b272
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
64 additions and
0 deletions
@ -0,0 +1,19 @@
. pace {
-webkit-pointer-events : none ;
pointer-events : none ;
-webkit-user-select : none ;
-moz-user-select : none ;
user-select : none ; }
. pace-inactive {
display : none ; }
. pace . pace-progress {
background : # ffa400 ;
position : fixed ;
z-index : 2000 ;
top : 0 ;
right : 100 % ;
width : 100 % ;
height : 2px ; }
@ -0,0 +1 @@
. pace { -webkit- pointer-events : none ; pointer-events : none ; -webkit- user-select : none ; -moz- user-select : none ; user-select : none ; } . pace-inactive { display : none ; } . pace . pace-progress { background : #ffa400 ; position : fixed ; z-index : 2000 ; top : 0 ; right : 100 % ; width : 100 % ; height : 2 px ; }
File diff suppressed because one or more lines are too long
@ -0,0 +1,24 @@
$primary-colour : rgb ( 255 , 164 , 0 ) ;
. pace {
-webkit-pointer-events : none ;
pointer-events : none ;
-webkit-user-select : none ;
-moz-user-select : none ;
user-select : none ;
}
. pace-inactive {
display : none ;
}
. pace . pace-progress {
background : $primary-colour ;
position : fixed ;
z-index : 2000 ;
top : 0 ;
right : 100 % ;
width : 100 % ;
height : 2 px ;
}
@ -206,6 +206,13 @@
<Content Include= "Content\jquery-2.2.1.min.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "Content\pace.css" >
<DependentUpon > pace.scss</DependentUpon>
</Content>
<Content Include= "Content\pace.min.css" >
<DependentUpon > pace.css</DependentUpon>
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\requests.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
@ -222,6 +229,10 @@
<DependentUpon > compilerconfig.json</DependentUpon>
</None>
<None Include= "Content\custom.scss" />
<Content Include= "Content\pace.min.js" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<None Include= "Content\pace.scss" />
<None Include= "NLog.xsd" >
<SubType > Designer</SubType>
</None>
@ -9,6 +9,8 @@
<link rel="stylesheet" href="~/Content/custom.min.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/bootstrap.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/font-awesome.css" type="text/css"/>
<link rel="stylesheet" href="~/Content/pace.min.css" type="text/css"/>
<!-- Scripts -->
<script src="/Content/jquery-2.2.1.min.js"></script>
@ -16,6 +18,7 @@
<script src="/Content/bootstrap.min.js"></script>
<script src="/Content/bootstrap-notify.min.js"></script>
<script src="/Content/site.js"></script>
<script src="/Content/pace.min.js"></script>
</head>
<body>
@ -2,5 +2,9 @@
{
"outputFile" : "Content/custom.css" ,
"inputFile" : "Content/custom.scss"
} ,
{
"outputFile" : "Content/pace.css" ,
"inputFile" : "Content/pace.scss"
}
]