diff --git a/.gitignore b/.gitignore index 0f8850d..7101b15 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,7 @@ config.json public/b public/ca public/t +deleted/b +deleted/ca +deleted/t tmp/* diff --git a/README.md b/README.md index 0983568..9edfda2 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ cd f0ckv2 #(for developers: git checkout dev) npm i psql f0ck < f0ck.sql -mkdir -p public/ca +mkdir -p public/ca deleted/{ca,b,t} cp config_example.json config.json - edit config.json - set up clients, as described here: https://git.lat/keinBot/cuffeo diff --git a/public/s/css/f0ck.css b/public/s/css/f0ck.css index 2f56fb5..f2ac346 100644 --- a/public/s/css/f0ck.css +++ b/public/s/css/f0ck.css @@ -868,6 +868,14 @@ html[theme="f0ck95"] ._error_topbar { background: -webkit-linear-gradient(left,#08216b,#a5cef7); } +html[theme="f0ck95"] .f0ckgle { + color: black; +} + +html[theme="f0ck95"] .admin-search button { + color: black; +} + /* f0ck95dARK */ html[theme='f0ck95d'] { --accent: #fff; @@ -877,7 +885,7 @@ html[theme='f0ck95d'] { --gray: silver; --nav-bg: #0b0a0a; --nav-brand-border: inset 1px black; - --nav-brand-bg: #4c4c4c; + --nav-brand-bg: #0000; --navigation-links-bg: #0b0b0b; --navigation-links-background-linear-gradient: rgba(0,0,0,.12),rgba(0,0,0,0); --navigation-links-border-color: rgba(0,0,0,.8) rgba(0,0,0,.65) rgba(0,0,0,.5); @@ -1071,6 +1079,10 @@ html[theme="f0ck95d"] .badge-danger { border-radius: 0; } +html[theme="f0ck95d"] .admin-search button { + color: black; +} + ::-webkit-scrollbar { width: 2px; } diff --git a/views/search.html b/views/search.html index 2e7b9e1..fe17d81 100644 --- a/views/search.html +++ b/views/search.html @@ -1,35 +1,37 @@ @include(snippets/header) -

f0ckgle

- -
- @if(result) -

{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):

- - - - - - - - - - - - - @each(result as line) - - - - - - - - - @endeach - -
ThumbnailIDTagMimeUsernameScore
ID:{{ line.id }}Tag:{!! line.tag !!}Mime:{{ line.mime }}User:{!! line.username !!}Score:{{ line.score?.toFixed(2) }}
- @endif +
+

f0ckgle

+ +
+ @if(result) +

{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):

+ + + + + + + + + + + + + @each(result as line) + + + + + + + + + @endeach + +
ThumbnailIDTagMimeUsernameScore
ID:{{ line.id }}Tag:{!! line.tag !!}Mime:{{ line.mime }}User:{!! line.username !!}Score:{{ line.score?.toFixed(2) }}
+ @endif +
@include(snippets/footer) \ No newline at end of file