Compare commits

..

No commits in common. "e47b7902420082876e70b8053aef09fee54f9258" and "3bbe9d61097a84e5fb7b1fae2f8a17f11fe0cd95" have entirely different histories.

5 changed files with 4 additions and 18 deletions

2
.gitignore vendored
View File

@ -9,5 +9,3 @@ fonts/muller/**/*.woff
fonts/muller/**/*.woff2 fonts/muller/**/*.woff2
.directory .directory
data data
tags
TAGS

View File

@ -68,12 +68,7 @@ make' root prefix nsfw dataDir dir info@(Info {date, title, artist, bg}) = do
</figcaption> </figcaption>
|] |]
let defWarning = "oops i forgot to put one, sorry!<br>\ let warning' = ifJust (#warning image0) makeWarning
\if you can let me know i'd appreciate it" :: Text
let warning'
| Just w <- #warning image0 = makeWarning w
| #nsfw image0 = makeWarning defWarning
| otherwise = mempty
let warningT = makeWarning [b|.|] let warningT = makeWarning [b|.|]
let bgStyle = ifJust bg \col -> [b|@0 let bgStyle = ifJust bg \col -> [b|@0

View File

@ -100,11 +100,8 @@ function useFragment() {
clearForm(); clearForm();
} else { } else {
let set = new Set(frag.split(';')); let set = new Set(frag.split(';'));
if (new Array(...set).every(x => /^(require|exclude)_/.test(x))) { allBoxes.forEach(b => b.checked = set.has(b.id));
allBoxes.forEach(b => b.checked = set.has(b.id)); document.getElementById('filters-details').open = true;
let details = document.getElementById('filters-details');
details.open = !set.has('hide_filters');
}
} }
updateItems(); updateItems();

View File

@ -67,7 +67,7 @@
align-items: center; align-items: center;
justify-content: space-evenly; justify-content: space-evenly;
padding: 0; padding: 0;
grid-gap: 1.5em; grid-gap: 1.5em 0;
font-size: 175%; font-size: 175%;
} }

View File

@ -143,10 +143,6 @@
margin-left: 0.8em; margin-left: 0.8em;
} }
#info .floating.left {
float: left;
}
#info .shaped { #info .shaped {
/* maybe one day... */ /* maybe one day... */
/* shape-outside: attr(src url); */ /* shape-outside: attr(src url); */