fixed 'fetch time' layout on mobile
This commit is contained in:
parent
35e657bccd
commit
9b9eded47e
2 changed files with 18 additions and 5 deletions
6
main.go
6
main.go
|
@ -226,7 +226,7 @@ func runServer() {
|
|||
w.Header().Set("Content-Type", "application/opensearchdescription+xml")
|
||||
http.ServeFile(w, r, "static/opensearch.xml")
|
||||
})
|
||||
printInfo("Website functionality enabled.")
|
||||
printInfo("Website is enabled.")
|
||||
} else {
|
||||
// Redirect all website routes to a "service disabled" handler
|
||||
http.HandleFunc("/static/", handleWebsiteDisabled)
|
||||
|
@ -238,7 +238,7 @@ func runServer() {
|
|||
http.HandleFunc("/image_status", handleWebsiteDisabled)
|
||||
http.HandleFunc("/privacy", handleWebsiteDisabled)
|
||||
http.HandleFunc("/opensearch.xml", handleWebsiteDisabled)
|
||||
printInfo("Website functionality disabled.")
|
||||
printInfo("Website is disabled.")
|
||||
}
|
||||
|
||||
if config.NodesEnabled {
|
||||
|
@ -252,7 +252,7 @@ func runServer() {
|
|||
func handleWebsiteDisabled(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "text/plain")
|
||||
w.WriteHeader(http.StatusServiceUnavailable)
|
||||
_, _ = w.Write([]byte("The website functionality is currently disabled."))
|
||||
_, _ = w.Write([]byte("The website is currently disabled."))
|
||||
}
|
||||
|
||||
func handlePrivacyPage(w http.ResponseWriter, r *http.Request) {
|
||||
|
|
|
@ -1602,15 +1602,27 @@ body, h1, p, a, input, button {
|
|||
}
|
||||
|
||||
.fetched_img {
|
||||
margin-top: 135px !important;
|
||||
margin-top: 25px !important;
|
||||
margin-left: 1.2% !important;
|
||||
left: 0px !important;
|
||||
}
|
||||
|
||||
.fetched_vid {
|
||||
margin-top: 135px !important;
|
||||
margin-top: 25px !important;
|
||||
}
|
||||
|
||||
.fetched_dif_videos {
|
||||
margin-top: 135px !important;
|
||||
}
|
||||
|
||||
.fetched_dif_files{
|
||||
margin-top: 25px !important;
|
||||
}
|
||||
|
||||
.fetched_dif_images {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.results_settings {
|
||||
left: 20px;
|
||||
font-size: 13px;
|
||||
|
@ -1622,6 +1634,7 @@ body, h1, p, a, input, button {
|
|||
}
|
||||
|
||||
form.torrent-sort {
|
||||
margin-top: 35px;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue