Aevann1
06314f92b1
remove referrer from html tags
2022-10-29 23:42:30 +02:00
Aevann1
6451572139
remove refererrs from profile images
2022-10-29 23:16:43 +02:00
Aevann1
6b0fe97a85
remove using invisible character as spacing
2022-10-29 03:31:25 +02:00
Aevann1
fdd608532b
add type="button" to all <button> tags
2022-10-29 01:35:14 +02:00
Aevann1
2019f68217
same as last commit
2022-10-29 01:31:39 +02:00
Aevann1
6c32916f1a
convert more <a> tags to <button> tags
2022-10-29 00:51:10 +02:00
Aevann1
4cbe5c41eb
even higher margins
2022-10-14 17:31:02 +02:00
Aevann1
efe0ff091a
increase margins in log
2022-10-14 17:28:07 +02:00
Snakes
d1e065460e
Fix hole modlog pagination.
2022-10-08 00:32:03 -04:00
Aevann1
d1f52447b1
remove old earlylife css code
2022-10-07 01:45:23 +02:00
Aevann1
51d7cd6d7e
fix shit with hole logs
2022-09-29 12:18:27 +02:00
Aevann1
09cc43060d
add hole mod logs ( #380 )
2022-09-29 11:39:37 +02:00
Snakes
98936efe60
assetcache: apply to all CSS and JS assets.
2022-09-24 03:04:06 -04:00
Snakes
7b9ac8e13b
Fix Thin badge popover sizing; expand assetcache.
2022-09-23 18:38:53 -04:00
Aevann1
97dc727e22
cachebust
2022-09-20 23:22:58 +02:00
Aevann1
bd7c0e71bf
forgot to cachebust
2022-09-10 11:34:48 +02:00
Aevann1
4791e7b14b
revert icon change
2022-09-08 19:24:00 +02:00
Aevann1
e9445efc22
make bootstrap work on localhost
2022-09-08 19:12:46 +02:00
Aevann1
f4e4ff3839
comsetic shit
2022-09-08 17:38:27 +02:00
Aevann1
b2d134fa6c
update glowing hat
2022-09-06 23:15:35 +02:00
Aevann1
4ca6cda0e5
hats everywhere
2022-09-06 05:51:55 +02:00
Aevann1
c354f0da9b
minor cosmetic change
2022-09-06 01:37:06 +02:00
Aevann1
71b5367874
cachebust all css and js
2022-09-05 01:50:43 +02:00
Aevann1
c40fa120e8
remove ((( from chud award
2022-08-30 06:03:16 +02:00
Aevann1
0f11312d24
add house awards
2022-08-27 04:57:19 +02:00
Aevann1
17d35de929
fix this https://rdrama.org/post/18459/marseycapywalking-megathread-for-bugs-and-suggestions/2459808?context=8#context
2022-08-11 14:57:20 +02:00
Aevann1
0429da4493
mod action notifs rework
2022-08-05 23:50:30 +02:00
Aevann1
dde09890e1
make profile avatars neater on /log AND add toast when copying link
2022-07-13 17:19:36 +02:00
Aevann1
57e424af5b
revert the "defer" thing
2022-07-03 12:10:04 +02:00
Aevann1
45437997c8
show log timestamp in local timezone
2022-07-03 10:38:19 +02:00
Aevann1
a49325ba14
defer all scripts (this won't change anything for us since we use rocketloader, but it will fix javascript on localhost)
2022-07-03 09:42:33 +02:00
Aevann1
d59f346f0b
1 less request, 1 less transaction, 1 less query
2022-07-01 23:10:48 +02:00
Aevann1
6bd4efa61f
Revert "make small text less small"
...
This reverts commit 42b0f37034
.
2022-06-27 04:33:38 +02:00
Aevann1
42b0f37034
make small text less small
2022-06-27 04:18:14 +02:00
Aevann1
e022b29ef6
rework custom css a little
2022-06-26 07:26:45 +02:00
Aevann1
74978bfbf7
Revert "put custom CSS into HTML templates"
...
This reverts commit 19c82b7ea1
.
2022-06-26 07:07:28 +02:00
Aevann1
19c82b7ea1
put custom CSS into HTML templates
2022-06-26 06:33:41 +02:00
Aevann1
f34c4e1196
stop using app.config for our own stuff
2022-06-24 17:08:57 +02:00
Aevann1
222367cea8
fix 500 errors
2022-06-24 03:28:34 +02:00
Aevann1
9dbe67bf90
respect user's chosen themecolor
2022-06-24 03:27:49 +02:00
Aevann1
d704592bdd
cache-bust all previously broken images
2022-06-22 17:59:47 +02:00
Aevann1
20585ca543
add a shortened endpoint for static images and rename loading.webp to l.webp (to save bytes)
2022-06-22 17:51:19 +02:00
Snakes
80d04b6d9d
assetcache: Add theme CSS support; bust recent.
2022-05-30 01:50:52 -04:00
Snakes
af77ec515d
Templates: create assetcache template.
...
For too long, we've Replace-All'd to increment site asset version
numbers. This is a task that has an obvious solution using the
templating engine. As such, we now have templates/util/assetcache.html
which contains a dict of version numbers and a macro to generate the
versioned name of an asset.
Going forward, it is recommended that all future replace-all uses
are used as opportunities to switch to the macro. Do remember to
import the macro in all top-level templates, if not already present.
Recommended form: {%- from 'util/assetcache.html' import asset -%}
Then add a key to CACHE_VER in util/assetcache.html.
Then replace the asset path in templates eg: {{asset('css/main.css')}}
For all future versions of those assets, one can simply increment
the value in util/assetcache.html instead. This will greatly reduce
git spam touching unrelated files and generally be clearer and easier.
2022-05-26 22:47:32 -04:00
Aevann1
163267c88c
Revert "Add Y'all Seein' Eye award."
...
This reverts commit a0f441a67d
.
2022-05-26 02:51:42 +02:00
Snakes
a0f441a67d
Add Y'all Seein' Eye award.
...
Adds award to enable viewing profile visitors for non-mops and
non-patrons. This commit should encompass all frontend, backend, and
database changes necessary. Perhaps usable as a model for other
user upgrade flag awards.
2022-05-25 19:44:34 -04:00
Aevann1
b1d57227ff
sfd
2022-05-25 03:18:36 +02:00
Aevann1
4e4f667387
journoid
2022-05-25 03:14:18 +02:00
Aevann1
bbd851210e
fds
2022-05-24 17:32:49 +02:00
Aevann1
0a74a98ec5
big ass commit
2022-05-23 00:15:29 +02:00