[09:31:55] Well... I was scrolling past over 100 comments and this one immediately caught my eye... so it does work 😄 [10:08:11] [1/2] I'll help the first 10 people interested on how to  start earning $100k or more within a week, but you will reimburse me 10% of your profits when you receive it. Note: only interested people should send a friend request or send me a dm! ask me (HOW) via Telegram username @Edward_Pryce1 [10:08:12] [2/2] Or use the telegram link in my bio [13:26:24] [1/5] list of issues if have found since 1.44: [13:26:24] [2/5] https://thechurchofthestatue.miraheze.org/Main_Page [13:26:25] [3/5] * pretty much all the smooth transitions have died (except on apple devices for... some reason) [13:26:25] [4/5] * on the citizen skin, top bar has a layer issue when hovered on dark mode [13:26:25] [5/5] * portable infobox fonts have a stroke and do not apply on some pages [13:46:41] for the citizen related issues i think you should contact them via the SCW discord [13:47:28] can you pass me an inv link plox :3 [13:47:54] filed regarding the sticky header issue [13:48:37] https://discord.com/channels/407504499280707585/1001373934874284112/1400112825506205823 [14:06:32] are any of your broken CSS stuff using templatestyles? iirc they updated the sanitizer and now it gets pissy about a few things [14:06:53] one I noticed was the usage of the rgb() function when defining colors [14:08:36] [1/6] for example it dislikes `color: rgb(var(--whatever))` but [14:08:36] [2/6] ``` [14:08:36] [3/6] --whatever: rgb(1,2,3); [14:08:37] [4/6] color: var(--whatever); [14:08:37] [5/6] ``` [14:08:37] [6/6] is fine [21:09:20] [1/12] How are CSS animations done on your wiki? I tried some simple examples, which still seem to work on 1.44. [21:09:21] [2/12] ``` [21:09:21] [3/12] .animation-test { [21:09:21] [4/12] color: white; [21:09:22] [5/12] background-color: CornflowerBlue; [21:09:22] [6/12] transition: background-color ease-in-out .5s; [21:09:22] [7/12] } [21:09:23] [8/12] .animation-test:hover { [21:09:23] [9/12] background-color: SlateBlue; [21:09:23] [10/12] transition: background-color ease-in-out .5s; [21:09:23] [11/12] } [21:09:24] [12/12] ```