Nekobit
302f35cca0
login: Fix scroll overlay page
...
Login and scroll page were overflowing. This workaround is a bit funky due to the overflow placement, but it'll do
2022-10-30 00:12:06 -04:00
justcool393
74d3c325d4
Merge branch 'frost' into debooterstrap
2022-10-29 20:07:18 -07:00
Snakes
bf25937b54
Make rDrama sidebar markup semantic.
2022-10-29 19:08:35 -04:00
justcool393
940c475277
remove z index attributes that were causing things to fail (only on spooky?)
2022-10-29 16:31:51 -05:00
Nekobit
7e1681e34e
Bump, Responsive login page, use new stylesheet helpers
2022-10-29 14:30:20 -04:00
Aevann1
aec78a3b05
get rid of all header classes
2022-10-29 02:55:49 +02:00
Aevann1
edbbc5b672
convert the last remaining 2 <a> tags without href
2022-10-29 02:00:27 +02:00
Aevann1
5719688178
use tabs, not spaces
2022-10-29 01:39:31 +02:00
Aevann1
582a29232b
convert all <a> tags without a href, except 2 in award_modal.html
2022-10-29 01:27:38 +02:00
Aevann1
a33680dc22
convert more <a> tags to <button> tags
2022-10-29 01:09:06 +02:00
Aevann1
6c32916f1a
convert more <a> tags to <button> tags
2022-10-29 00:51:10 +02:00
Aevann1
b66f9fdb0a
convert 1 a tag to a button, and change native button css
2022-10-29 00:30:28 +02:00
Aevann1
eba9666dd6
add ml-5 mr-5 mx-5
2022-10-25 23:12:37 +02:00
Aevann1
b563b7af30
stop using "d-none d-md-block"
2022-10-23 19:57:38 +02:00
Aevann1
c2bb3303e1
fix prev commit
2022-10-22 23:13:37 +02:00
justcool393
c4b2c6f3f5
html head refactor ( #412 )
...
* start html head refactor
this is a bit of a doozy tbh and will probably take a while. the templates are very highly duplicated but not duplicated enough to be an easy little thing
oh well, so it goes.
* some easier html head ones
* add chat, html_head, sign_up_failed_ref, sign_up, submit
* CSP: put it in const.py instead of this weird thing we did before
* fix syntax error
* better call the actual macros
* fix prev commit
* import into settings2
* fix prev commit
* set CSP properly if localhost
* some title fixes i think
* login page
* fix prev commit
* hacky thing to get titles to work i think
* {{stylesheets()}}
* fix prev commit
* title stuff
* cries uncontrollably
* submission fixes i think
* fix prev commit i think
* submission fixes ekfjdhfkdjf
* submission fixes 4
* this may fix submissions idk tbh
* default template: make it a little better on post pages
* default template: some efficiency
2022-10-21 13:39:45 -05:00
Aevann1
408cb72baa
small css change for patting
2022-10-18 14:51:58 +02:00
Aevann1
9358b75027
fix prev commit
2022-10-17 20:22:29 +02:00
Aevann1
4a2c5e3392
cosmetic change
2022-10-17 20:20:42 +02:00
Aevann1
3ee85d524b
limit height of bio in popover to 50vh
2022-10-17 10:51:16 +02:00
Aevann1
da49350b2b
increase margin for "forgot password?"
2022-10-16 10:26:19 +02:00
Aevann1
6c2f2c5404
fix expanded images
2022-10-14 13:44:03 +02:00
Aevann1
caccb2307d
fix this https://rdrama.org/post/18459/marseycapywalking-megathread-for-bugs-and-suggestions/2887592?context=8#context
2022-10-13 16:25:10 +02:00
Nekobit
abef674662
Main dev, Login, signup
2022-10-09 19:19:48 -04:00
justcool393
4baf7cfa42
make text gold when owned all hats
2022-10-08 10:44:39 -07:00
Snakes
3949670088
WPD: sidebar update for flair & rule changes.
2022-10-08 01:10:39 -04:00
Aevann1
398c841632
fix the ruckus image on dark theme
2022-10-08 03:26:50 +02:00
Aevann1
3ecb1b4f9a
generate a mod log for CCing or unCCing posts and notify OP
2022-10-07 04:48:31 +02:00
Aevann1
c89df37af8
make emoji-modal and award-modal 90% width on desktop insttead of 80%
2022-10-07 01:41:18 +02:00
Aevann1
9bff6a682e
fix margins for award_modal and emoji_modal and popover
2022-10-06 23:16:16 +02:00
Aevann1
94e441a23b
decrrease max-width for a bunch of modals from 90% to 85%
2022-10-06 03:01:52 +02:00
Snakes
3f338fc3f2
WPD: add login required explanatory text.
2022-10-05 19:17:42 -04:00
Aevann1
d98e4c9c1c
convert repo from CRLF to LF
2022-10-04 17:24:58 +02:00
Aevann1
9b64b49175
make suggested emojis bigger on desktop
2022-10-01 11:45:52 +02:00
Aevann1
d418cfaef5
fix this https://rdrama.org/post/18459/marseycapywalking-megathread-for-bugs-and-suggestions/2811191?context=8#context
2022-09-29 19:53:40 +02:00
Aevann1
76921ac740
limit expanded image width on desktop to 80%
2022-09-29 12:27:11 +02:00
Aevann1
09cc43060d
add hole mod logs ( #380 )
2022-09-29 11:39:37 +02:00
Snakes
4a54c6219a
Add trailing final newlines to source files.
...
Touched a ton of files to finally standardize on having trailing
final newlines, as best practice recommends and so our devs stop
accidentally fighting each other over it.
This was performed automatically with the following:
git ls-files -z '*.py' | while IFS= read -rd '' f; \
do tail -c1 < "$f" | read -r _ || echo >> "$f"; done
git ls-files -z '*.css' | while IFS= read -rd '' f; \
do tail -c1 < "$f" | read -r _ || echo >> "$f"; done
2022-09-29 01:43:29 -04:00
Aevann1
c547f10498
make it possible to click on the spider
2022-09-26 04:52:16 +02:00
Aevann1
d80a2f2331
add "are you sure?" to "declare winner"
2022-09-22 22:11:56 +02:00
Aevann1
512d906970
slow down the blinking
2022-09-22 20:26:31 +02:00
Aevann1
227810dec9
add /live icon
2022-09-22 06:34:16 +02:00
gooseman
5348d50df0
fix spoiler issue on classic
2022-09-21 11:30:49 -07:00
Aevann1
272e39ebf2
add spider award
2022-09-20 19:52:52 +02:00
Aevann1
805d22bb77
fix tooltips on drambler
2022-09-19 22:44:25 +02:00
Aevann1
f54791cc4c
remove categories
2022-09-19 20:04:30 +02:00
Aevann1
a17775f8b5
make alerts readable
2022-09-17 16:42:19 +02:00
Aevann1
13e08f9561
cachebust a nut
2022-09-16 22:19:44 +02:00
Aevann1
133f99fa57
Revert "button"
...
This reverts commit ec35dc576a
.
2022-09-16 22:18:16 +02:00
gooseman
ec35dc576a
button
2022-09-16 12:51:27 -07:00