[00:12:19] Codex should exist if you're using vector-2022. What exactly are you trying to do? You could use https://www.mediawiki.org/wiki/Extension:MobileDetect if you want to serve different content based on the device type. [00:13:22] Codex should also be loaded when using Citizen [00:13:47] If it is loaded, I don't really understand how it works then... or i just don't understand how css works 😭 [00:14:15] I've been using that as an altrentive using 2 CSS files and loading one on mobile but... it just doesn't load for some reason... [00:14:27] It's janky asf i know but it's the only thing I've come across [00:16:39] Do you want to serve content on mobile or serve content for smaller screens? The latter can be accomplished by media queries and will work better because there are in-between devices like tablets. [00:16:44] I think i've found a bug with firefox developer extension becuase it's using a mobile user agent by defualt??? [00:16:57] Serve content for smaller screens [00:17:11] I was instructed to use Codex for this but i'm failing to understand the docs 😭 [00:18:35] Ah that'll be a lot easier. You can just use templatestyles stylesheets or `MediaWiki:Common.css` (and Mobile.css if you use mobilefrontend). [00:19:58] [1/3] Examples: [00:19:59] [2/3] https://strinova.org/wiki/Template%3ACharacterInfobox/styles.css [00:19:59] [3/3] https://strinova.org/wiki/MediaWiki%3ACommon.css [00:22:33] [1/2] Ah the problem is i'm also using citizen skin. For some reason normal media queires get ovverrided since i'm checking what width is set in the settings of the skin (for the same element, since it needs to scale depending on if it's full width or standard width) [00:22:33] [2/2] Or at least, i think it's ovverriding the normal media queires (I have no idea how this works tbh). [00:23:23] I asked in the star citizen wiki discord (which they list as a support server) and they told me to use codex... guess i'll contact them to see how to use it? [00:24:58] I'm not sure exactly what they meant by using Codex. Codex probably has some mechanism to handle mobile responsiveness, but can it be called from user scripts? [00:25:01] https://www.mediawiki.org/wiki/OOUI#Future_of_OOUI_alongside_Codex [00:25:25] AFAIK this means you can't easily use Codex with js? [00:27:07] I'm not calling it from user scripts, i'm calling it from CSS. It's supposed to be a media query checking a specific class (this one, the breakpoint one: https://doc.wikimedia.org/codex/latest/design-tokens/breakpoint.html) so that i can check the sizes and do specific things with them [00:27:13] Or at least, this is what i was told [00:31:14] Hmmm. I'm not familiar with how Codex works since most of the things I'm doing are simple media queries. Can you give an example page and specify what you want to do with a page element? [00:32:01] One sec! [00:39:21] [1/28] Basically, i have this protal template (it's on the main page, the link to the template: https://kaoruhana.wiki/wiki/Template:MPPortal) and it has it's own styles.css (https://kaoruhana.wiki/wiki/Template:MPPortal/styles.css) [00:39:21] [2/28] Basically, first, I check for what width we have, using elemtns from the citizen skin docs: [00:39:21] [3/28] ``` [00:39:22] [4/28] / Default width: 3 per row / [00:39:22] [5/28] html.citizen-feature-custom-width-clientpref-standard .character-gallery { [00:39:22] [6/28] grid-template-columns: repeat(3, 150px); [00:39:22] [7/28] grid-template-rows: repeat(2, max-content); [00:39:23] [8/28] grid-template-areas: [00:39:23] [9/28] ". . ." [00:39:23] [10/28] ". . ."; [00:39:24] [11/28] } [00:39:24] [12/28] / Wide and Full widths: 6 per row / [00:39:24] [13/28] html.citizen-feature-custom-width-clientpref-wide .character-gallery, [00:39:25] [14/28] html.citizen-feature-custom-width-clientpref-full .character-gallery { [00:39:25] [15/28] grid-template-columns: repeat(6, 150px); [00:39:26] [16/28] grid-template-rows: repeat(1, max-content); [00:39:26] [17/28] grid-template-areas: [00:39:27] [18/28] ". . . . . ." [00:39:27] [19/28] } [00:39:28] [20/28] ``` [00:39:28] [21/28] Now that i've checked for these two, I want to check for mobile. A normal media query won't work... so i copied this: [00:39:29] [22/28] ``` [00:39:29] [23/28] html.max-width-breakpoint-mobile .character-gallery { [00:39:30] [24/28] grid-template-columns: repeat(1, 150px); [00:39:30] [25/28] grid-template-rows: repeat(6, max-content); [00:39:31] [26/28] } [00:39:31] [27/28] ``` [00:39:32] [28/28] But this element just... doesn't activate when I check it out on moblie/shrink my screen... [00:44:45] TBH you can probably just use flex instead of grid unless you absolutely need them to be in a grid? [00:44:57] Anybody know if a username change affects all past contributions? Will it update the author’s name? [00:46:56] [1/2] I can't find any classes that are indicative of mobile sizes [00:46:56] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392668379634208888/image.png?ex=68705f00&is=686f0d80&hm=852962653b5d51c92fc517c5070181f3bbaf433d46027ac1bebd1ac691182b58& [00:47:26] Not sure what Codex's documentation is saying... Maybe someone familiar with MW's frontend would know. [00:47:30] I... didn't build this css... 😭 I think he used a gird becuase he wanted a clean solution for everything I think? I mean splitting the grid into two diffrent rows and stuff [00:47:39] I'll ask in the MW server [00:47:43] Thanks for the help anyways!!! [00:47:48] The support here is great! [01:16:08] is there a reason as to why syntax highlighting is disabled by default on certain wiki? [01:53:47] Some admins turn it off. [01:53:57] I personally turn it on and my wiki community hates me for it. [01:54:22] wild [01:54:31] that feature is useful af [01:54:50] > [10/07/2025 11:53] I personally turn it on and my wiki community hates me for it. [01:54:54] Then again, they give me syntax error whenever I look up the category and see a huge "template used incorrectly" or "syntax error". [01:54:59] that makes the second person i know who dislikes syntax highlighting [01:55:09] (well, it's your entire community, but close enough) [01:55:22] Expecting your community to like syntax highlighting and knowing how to do syntax for their wiki. [01:55:24] in the editor? [01:55:48] My community doesn't know how to use the source editor and only use visual editor... [01:56:04] And no matter how much instruction I left in the visual editor template on "ONLY NUMBERS ALLOWED". [01:56:08] They refuse to read. [01:56:27] Mostly because "Why do I need syntax?" [01:56:34] Cause they are writers. Not coders. [01:56:38] wait really? [01:56:43] i mean... it's pretty? [01:57:00] i don't understand that angle lol [01:57:15] Expecting writers to design their article is like expecting a truck driver to give a damn the deer they just hit on the free way. [01:57:18] writers should understand wikitext formatting [01:57:41] Hell, most of my colleagues in my News firm don't design their articles. [01:57:47] We have a graphic department for that. [01:58:01] im gonna have to ask if they're stupid [01:58:11] I do that every day... [01:58:55] Being a sysadmin for communities is not fun. [01:59:05] Sure, you have people who are understanding. [01:59:12] Then you also have completely deranged individuals. [01:59:20] Such is the fate of any big communities. [01:59:34] deranged individuals exist on both ends of the spectrum [01:59:41] I think we have around 400-500 people? [01:59:50] insane code genius vs "why doesn't my chatgpt wikitext work" [01:59:58] And I'm the only sysadmin who also handles articles meeting standards. [02:00:18] no other admins than yourself on that specific wiki you're on? [02:00:49] We do have bureaucrats but they're community managers (like moderators for a forum) so their role on the wiki is pretty limited... Which is a nice way of saying they don't know what they're doing and only insisted on getting it cause "They're the community discord staff". [02:00:59] Which is ironic cause they don't give me a staff role... [02:01:10] urgh politics [02:01:20] dang [02:01:26] I love video games/roleplaying games community discord. [02:01:27] ~is it a Roblox wiki?~ [02:01:33] No. Fortunately. [02:01:39] thank god [02:01:42] it would be way worse then [02:01:43] It's a tabletop roleplaying game community. [02:01:53] We do DnD. [02:02:00] NationStates... [02:02:05] Custom Tabletoo games. [02:02:16] Battletech. [02:02:20] Halo Fleet Battle. [02:02:55] It's a fun community. But since our focus is mostly roleplaying. Not a lot of the old-timers know how a wiki works. [02:03:11] I think the only people how does are people who play battletech and 40K. [02:03:52] Roblox wiki sounds like a nightmare... [02:08:25] they're alright if run by decent people/not kids [02:08:37] shoutout IRWA [02:09:00] I used to be a roblox player back in the early days. Used to make games too... Good times... But post-2017 is just hell. [02:09:44] what the stock markest does to a mfer [02:10:14] That and a new influx of kids... And their slow degradation and loss of soul... [02:10:30] kids are always gonna be kids [02:10:31] 2017 was basically toxicity on both dev scene, player scene and community scene. [02:10:46] All the new kids, all the new, latest swear words flying around. [02:11:03] nothing new [02:11:18] Let me guess. They still haven't fixed the community toxicity problem? [02:11:34] bold of you to assume they started caring lmao [02:11:58] they can't/won't even fix moderation [02:11:59] [1/2] Me: make something slightly cool for the community. [02:11:59] [2/2] Some kid from the community: I like your cool thing and I'm gonna run a hack program to steal your thing and leak it so we can all use it. [02:12:13] Me: You could've just asked...? [02:12:45] yeah... [02:13:38] And dev payout. I think they uh, stopped doing that now? [02:13:58] It was so cool getting paid for making games and earning robux when I was 10. [02:14:49] they're replacing the premium payouts with something focused on bigger games yeah [02:15:01] getting a bit #offtopic ngl [02:15:13] Let's go there. [02:15:30] is timeless skin better than monobook? [02:16:33] Depends on what you want to do. Generally people would prefer timeless over monobook unless they are an old-timer. [02:17:29] It just dawned upon me that the 50/50 split of mobile vs desktop users on Matomo is potentially biased because adblockers are easier to install on desktop browsers. [02:18:05] someone needs to measure how many people use adblockers first [02:19:28] Yeah. I always thought that at least Matomo gives the right proportions, but some demographics (e.g. desktop users, linux users, etc.) are more likely to use an adblocker than others. [02:19:58] Well that is easier said than done, at least without breaking a bunch of privacy laws in the process [02:21:32] not saying we should lol [02:23:01] I use adblocker. [02:23:15] What the corpos gonna do? Fight me? [02:23:35] Youtube sure are trying, at least 😉 [02:23:52] Matomo by itself could leak private information as well. A malicious user A can create a seldomly-visited wiki, invite another user B to visit the site, and without an adblocker Matomo will collect information about user B. A can go to analytics and then determine, for example, which country B is from, what browser/OS B uses, etc. [02:24:08] "hewwo, p-p-pwease don't use adblockew uwu" [02:24:58] So what Fandom has been doing? [02:25:31] Honestly if corpo says that. I might actually listen. Make me remember Eclair. [02:27:45] ai internationalization [02:27:54] @blankeclair courtesy mention ^ [02:27:58] didn't age pretty well [02:28:33] nya [02:28:37] [1/2] Corpo: AI is the future. [02:28:37] [2/2] Also Corpo: Why does none of the professionals/experts want to use our AI!!! [02:28:38] sorry if i'm dead right now [02:29:05] we are all approaching death at an accelerating pace, do not worry [02:29:17] i mean emotionally tired :p [02:29:18] I could've died when I was 19. I survived. [02:29:21] Still wondering how. [02:29:33] I escaped death not once, not twice. But five times. [02:29:38] Talk about sheer luck [02:29:42] humans are like a weed, what can I say [02:29:53] so true [02:29:56] persistent [02:30:08] But you can't smoke a huma- Actually you can. [02:30:18] 🤔 [02:30:23] https://www.youtube.com/watch?v=eYSJfsg01xI [02:30:27] the smoker outside: [02:30:49] With that kind of bagging. That's sexual harassment. [02:30:56] ? [02:30:59] (can't tell the joke) [02:31:05] Look at how they duct-taped the "body". [02:31:07] 🤣 [02:31:29] borderline [02:31:34] Exactly [02:32:08] ugh, of course my mother just disappears [02:32:32] https://cdn.discordapp.com/attachments/407537962553966603/1392694952747601981/1752114750677.jpg?ex=687077bf&is=686f263f&hm=56abe2ed69c82f5f05f44e1f6b46e32206a57cbee8b04798bd3122c0002663f1& [02:32:41] WHY IS HE PEEKING [02:32:45] Corpo lingo detected. [02:33:00] why is the keybinding on wikitext editor works flawed [02:33:43] Ctrl + d removes an active line of code instead of electing the next occurance [02:34:02] "Personality as a career person". [02:34:08] 😭 [02:34:15] j*b propaganda [02:34:29] Corpo propaganda*. Job is fine. [02:34:33] Corpo is not fine. [02:34:41] We hate corpo, not jobs. [02:34:44] the only job i accept is mediawiki jobs [02:35:10] now if only they had more of those [02:35:20] we had a million of them once, no? [02:35:28] lmao [02:35:58] job queue must've been crazy [02:36:05] Imagine if mediawiki is hiring... [02:36:07] 😔 [02:36:09] refreshLinks + loginwiki = kaboom [02:36:13] wikimedia* [03:00:53] [1/5] I'll help the first 10 people interested on how to  start earning $50k 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 WhatsApp:+1 (586) 208‑0849 [03:00:54] [2/5] ‪or contact via Telegram [03:00:54] [3/5] 👇👇👇👇👇 [03:00:54] [4/5] @Adolph_Young12 [03:00:55] [5/5] Or The telegram link in my bio [03:00:55] @adolphyoung0255 Too many emojis. [03:23:18] https://icarly.miraheze.org/wiki/ is the Wiki I have searching problems on [03:24:14] https://cdn.discordapp.com/attachments/407537962553966603/1392707964187574386/IMG_0553.png?ex=687083dd&is=686f325d&hm=b2831976857eac18e60c3626ae6a520bc410d0bc8264d6f0461bb1995bf42a9d& [03:24:38] https://cdn.discordapp.com/attachments/407537962553966603/1392708067199549501/IMG_0554.png?ex=687083f6&is=686f3276&hm=b76af701eae7f1e275a7900f2365ff345d750efedd7fa53a28d212a7f047b984& [03:26:53] [1/2] Because I was supposed to have the related articles here and hot the search thing enable but not working [03:26:54] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392708633397039154/IMG_0555.png?ex=6870847d&is=686f32fd&hm=c05df587d4f8d529b02947523a7761eeb5f0b575541a5af4cd359e87db61089d& [03:31:39] Could someone fix it please [03:32:31] [1/2] https://inextandkaylaandrachelverse.miraheze.org/wiki/Main_Page it’s working fine on this one [03:32:32] [2/2] It just needs to be fixed on the iCarly one [04:03:36] search is now being fixed [04:04:49] search is now fully fixed [04:06:57] [1/3] seems like related articles is now fixed too [04:06:57] [2/3] lmk if either of them are still broken :p [04:06:58] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1392718714918539284/1752120414157.png?ex=68708de1&is=686f3c61&hm=1471c89b24df24e592c3d4606ad99ab5eb61b77a834a8ffcb3c46e8cb17d3eca& [04:18:47] Thank you so much [04:18:52] Who fixed it [04:20:50] it... it's me [04:21:03] you're welcome ^_^ [04:21:14] Thank you so much 😊 [04:21:32] I’ll let you know if I need anything else [04:21:44] 🙏 [04:21:46] oki :3 [04:37:56] I remember 3 million once lol [06:25:03] [1/2] The wiki is displaying in german when logged out [06:25:03] [2/2] https://skibiditoiletwiki.miraheze.org/ [06:26:37] i hate caching i hate caching i hate caching [07:41:51] after reading #info-and-rules and , i am unclear about whether advertising to members of this Discord guild over Discord direct messages is allowed. does that fall under spam? [08:07:26] advertising what? [08:07:53] but generally unsolicited DMs is likely going to be spam [08:09:20] I would read https://discord.com/safety/platform-manipulation-policy-explainer too [08:17:51] for the case that made me ask, someone who only shares this guild with me was advertising art commissions. i know Discord disallows sending unsolicited bulk messages, but i can't tell whether that's the case here. i can only see the few messages they sent me. (the user has not sent any messages in this guild.) [08:18:51] send me a screenshot of the messages in DM and I'll raise it with mods [08:23:29] @Discord Moderators: see the MCR server please ^ [10:58:16] [1/2] trying this whole thing again, will this work? [10:58:16] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392822224561377382/image.png?ex=6870ee47&is=686f9cc7&hm=3cdfba5759723991adc7116c47162f55eee44442d722174447b552af396d4cb2& [11:06:37] do you have templatedata enabled [11:06:52] what's that [11:07:26] the extension that makes templatedata function properly [11:08:07] well i've never heard of it so i guess not [11:08:29] enable it via Special:ManageWiki/extensions [11:09:44] ok, im there [11:12:41] aight, found it and i enabled it, what now [11:12:53] Now wait for a few minutes for this to work correctly [11:13:08] Once you've waited like around 5 minutes, purge or null edit the template [11:13:27] so i completely remove it? [11:13:38] no [11:13:54] Purge is a button on the template that allows you to clear your cache so you can seee the instant change [11:14:05] Null edit is basically editing but changing nothing and then saving [11:14:11] Ah [11:23:45] ok ive null edited it, what now [11:24:15] does templatedata still appear like this then https://cdn.discordapp.com/attachments/407537962553966603/1392822224561377382/image.png?ex=6870ee47&is=686f9cc7&hm=3cdfba5759723991adc7116c47162f55eee44442d722174447b552af396d4cb2& [11:24:26] yep [11:24:35] wait actually why do you literally have a table in templatedata [11:24:50] because im trying to make the template have a table [11:25:25] Huh [11:25:33] having a literal table in templatedata will not make it work [11:26:22] then how do i make it have a table [11:26:56] could you explain on what you want the outcome to be [11:27:45] [1/2] like this on wikipedia (but without the meters and feet entries) [11:27:45] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392829643568189541/image.png?ex=6870f530&is=686fa3b0&hm=e9db24c9563c6965363b5e192f37025ad456c249cf2d48936b7ea3fee1e3f521& [11:29:01] move the table out of the templatedata tags, and then read https://m.mediawiki.org/wiki/Help:Templates#Parameters [11:29:22] i didn't understand it [11:29:29] (this is the 3rd time ive been given that link) [11:29:42] What do you specifically not understand [11:30:33] well its different from whats in the miraheze source editor [11:31:46] [1/2] since it has this [11:31:46] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392830656970494003/image.png?ex=6870f622&is=686fa4a2&hm=b044e3540b71b4e0a38d85c7f10a6afff88489e7e92858f7360dea257256413b& [11:32:08] [1/2] and its this on the source editor [11:32:08] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392830749299970078/image.png?ex=6870f638&is=686fa4b8&hm=acd05d1dc347921f8e05e124496b0e855d62e86cffec48cdf275a5957feb7d25& [11:33:29] That is a table [11:33:33] That is Template Data [11:33:57] Ok...? [11:34:07] im trying to get that table into the template data somehow [11:34:40] TemplateData is used to document parameters for users using visual editor to use [11:35:56] [1/2] ok i removed the table and im getting this [11:35:56] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392831705387106314/image.png?ex=6870f71c&is=686fa59c&hm=7913e4d397950925ddc7f7c151a58062a2a26b6d95e53b4e6c396d55ed8da7d2& [11:36:17] link to the template? [11:36:31] https://thebrinkwiki.miraheze.org/wiki/Template:Airport [11:40:12] [1/2] hm [11:40:13] [2/2] templatedata doesnt seem to work properly which is quite weird [11:41:50] if it helps, most of the wiki was ported over from fandom [11:46:22] well, it says now there's not a syntax error [12:13:22] basically any cold call about art commissions is going to be part of a common discord scam these days I'm afraid [12:14:06] they're on discord now? they've been a thing on tumblr for months now [12:27:36] [1/2] do miraheze have these resizable codeditor box? [12:27:37] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392844708438347796/image.png?ex=68710338&is=686fb1b8&hm=8832f786782a58b9c310c44f25d80faeeb70b1fc7a7eb249fbac7c507e5c9ae5& [13:01:55] [1/2] bro how is this username allowed 💔 [13:01:55] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392853338646778000/image.png?ex=68710b41&is=686fb9c1&hm=6c7a8b21edcea4f68dd43aba6baab74aade4dd1a47a8fb0f09cfd1b551ab766a& [13:11:28] Why wouldn't it be? [13:16:34] if it means something that violates policies you can report [13:17:07] like, ofc idk what it says in another language [13:17:27] i think i reported at least one offensive username in russia [13:17:50] but i mostly remember the doxxing case [13:28:19] I have recreated the NhanVat table for quite some times and I still haven't seen the other character pages appears as new rows in the table, would that worth calling a task? [13:33:47] Yes [14:41:28] How long until Fandom acquires Miraheze like with Gamepedia? [14:43:02] <90gq29, replying to xaxos92> Won't happen. Miraheze is a non-profit. [14:48:41] ^ amen [14:53:36] Fandom have no intention of buying us [14:53:49] Nor would we sell to them [15:30:03] [1/2] We are also the healthiest financially we've ever been (though more reserves would definitely enable even more ambitious projects) [15:30:03] [2/2] [[Finance]] for details there. [15:30:04] [15:30:36] So absolutely no need either [16:55:14] [1/2] Hello, I'm making a request to the steward and I have no idea what the last field at the bottom does. What does it do? Is it necessary for me and the Steward to communicate? [16:55:14] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392912059389317153/image.png?ex=687141f2&is=686ff072&hm=18ae7789244d897f2cedad950af39eaf8edaf7187c327913277ee9cc58d3ac7c& [16:56:37] well, i personally don't understand what are you trying to request here so maybe write that down in this field [16:59:29] [1/2] requesting the removal of another bureaucrat [16:59:29] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392913126285906001/image.png?ex=687142f0&is=686ff170&hm=7736391680ba9bd8dcc6feea4fdecd8cb41264d0b57463126a08df085e4a07e7& [17:00:03] The one at the bottom is if there’s been a community discussion showing consensus for the decision [17:00:51] alright thanks [17:08:09] You can enable syntax highlighting for editors by default? [17:09:39] How exactly? I've tried looking [17:22:24] out of curiosity, is it possible to create an extenstion where by hovering over a link / templated text, it generates a popup containing text? [17:23:16] <_arawynn> an extension like that exists already [17:23:45] wahoo [17:23:50] thats cool [17:24:02] <_arawynn> I just don't remember its name, only that you need textextract and another extension for it to work [17:24:03] same question [17:24:23] Previews [17:24:40] wikipedia type feature [17:29:02] How do I make certain CSS only apply in Dark Mode? [17:29:32] like, what class is used to define whether something is for light or dark mode? [17:36:06] Talking about the Citizen skin specifically [17:38:33] it's `.skin-citizen-dark` [17:39:11] but it could also be `.skin-citizen-auto` in which case you need to have mediaqueries to know which colorscheme is set on the webbrowser [17:39:11] Thanks! [17:39:31] I'll stick with this [17:40:35] just the user that uses the auto feature of citizen won't have the color in dark even if their browser is setted to [17:41:18] Oh yeah I am noticing that now [17:41:58] I don't know much CSS, is it not as simple as `.skin-citizen-auto .random-class`? [17:42:22] Oh yeah obviously not [17:43:05] [1/17] ```css [17:43:06] [2/17] .skin-citizen-dark .mw-content-ltr .redirectText li:first-child { [17:43:06] [3/17] filter: invert(1); [17:43:06] [4/17] } [17:43:06] [5/17] .skin-citizen-dark .mw-content-ltr .redirectText li:first-child a { [17:43:07] [6/17] filter: invert(1); [17:43:07] [7/17] } [17:43:07] [8/17] @media (prefers-color-scheme: dark){ [17:43:08] [9/17] .skin-citizen-auto .mw-content-ltr .redirectText li:first-child { [17:43:08] [10/17] filter: invert(1); [17:43:08] [11/17] } [17:43:09] [12/17] .skin-citizen-auto .mw-content-ltr .redirectText li:first-child a { [17:43:09] [13/17] filter: invert(1); [17:43:09] [14/17] } [17:43:10] [15/17] } [17:43:10] [16/17] ``` [17:43:11] [17/17] here's a snippet i made some time ago [17:43:53] did they not remove those classes in favor of other ones [17:43:56] [1/2] it looks some element is a descendant of .skin-citizen-dark and if so invert its color [17:43:56] [2/2] if the media query says the prefered scheme is dark, and that the class is auto it also do [17:44:02] huh [17:44:03] maybe [17:44:20] i didn't touch on my css for a good time [17:44:32] yeah they did [17:45:54] huh i gotta change it then lmao [17:46:27] :moonch: [17:46:38] Do I need to do something else then? [17:47:18] they're just using a different class for noting light/dark mode [17:47:47] https://discord.com/channels/407504499280707585/407537962553966603/1383117694076719229 [17:47:49] is it `.skin-theme-clientpref-night` by any chance? [17:47:54] yes [17:51:32] i modified the above snippet to reflect the change in classes naming [17:56:53] Thanks! [18:26:47] [1/2] Does anyone know how I can have my infobox divided like this [18:26:48] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392935099993034923/image.png?ex=68715767&is=687005e7&hm=01bb34edb1fc11dcf759d0c1d245b4d9f24cf439b1a9271e72829a02883d9301& [18:33:15] [1/13] This is the code for it so far [18:33:16] [2/13] ``` [18:33:16] [3/13] [18:33:16] <MirahezeRelay> <consend> [4/13] <default>{{PAGENAME}}/default [18:33:17] <MirahezeRelay> <consend> [5/13] /title [18:33:17] <MirahezeRelay> <consend> [6/13] <image source="logo"> [18:33:17] <MirahezeRelay> <consend> [7/13] <default>[[File:Example.jpg]]/default [18:33:17] <MirahezeRelay> <consend> [8/13] /image [18:33:18] <MirahezeRelay> <consend> [9/13] <data source="participants"> [18:33:18] <MirahezeRelay> <consend> [10/13] <label>Participants/label [18:33:18] <MirahezeRelay> <consend> [11/13] /data [18:33:19] <MirahezeRelay> <consend> [12/13] /infobox [18:33:19] <MirahezeRelay> <consend> [13/13] ``` [19:25:53] <MirahezeRelay> <kuurubizu81, replying to consend> [1/5] put the two columns in a horizontal group like this [19:25:54] <MirahezeRelay> <kuurubizu81, replying to consend> [2/5] ```<group layout="horizontal"> [19:25:54] <MirahezeRelay> <kuurubizu81, replying to consend> [3/5] <data source="allied"><label>Allied Leaders/label/data [19:25:54] <MirahezeRelay> <kuurubizu81, replying to consend> [4/5] <data source="axis"><label>Axis Leaders/label/data [19:25:54] <MirahezeRelay> <kuurubizu81, replying to consend> [5/5] /group``` [19:28:39] <MirahezeRelay> <kuurubizu81> added the header [19:37:06] <MirahezeRelay> <consend, replying to kuurubizu81> Thank you! Do you know how I would left-align all the text? (Besides the header) [19:39:54] <MirahezeRelay> <kuurubizu81> no sorry [19:54:18] <MirahezeRelay> <libresoldier79> [1/2] The "tech guy" in our wiki left, and I want to make this say "founder(s)" instead of "founder", but I'd like to make it so it _shows_ as founder(s) on the page, but as an template parameter it would say "founder" [19:54:18] <MirahezeRelay> <libresoldier79> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392957122190376980/image.png?ex=68716be9&is=68701a69&hm=b07d2621e1c02f2ce62fbb9ffbe91968d08f652966bc2ca4ff9fb7b24b707ae2& [22:02:17] <MirahezeRelay> <gamerdanceryt> [1/2] Can somebody write a very basic guide on how to set up discord notifications for wiki feed [22:02:17] <MirahezeRelay> <gamerdanceryt> [2/2] My friend is not very good at tech and I'll just forward whatever you say [22:03:52] <MirahezeRelay> <gamerdanceryt> She is both wiki and server owner [22:04:30] <MirahezeRelay> <pskyechology, replying to gamerdanceryt> [1/3] 1. make a webhook in server settings > integrations [22:04:31] <MirahezeRelay> <pskyechology, replying to gamerdanceryt> [2/3] 2. copy url [22:04:31] <MirahezeRelay> <pskyechology, replying to gamerdanceryt> [3/3] 3. paste into $wgDiscordAdditionalIncomingWebhookUrls at Special:ManageWiki/settings [22:06:28] <MirahezeRelay> <gamerdanceryt> The webhook should automatically make a recent change channel yes [22:07:04] <MirahezeRelay> <pskyechology, replying to gamerdanceryt> no, you have to make one for it and point the webhook there in the same place where you can copy the url [22:07:16] <MirahezeRelay> <gamerdanceryt> Alright [22:07:47] <MirahezeRelay> <pskyechology> [1/2] an example [22:07:47] <MirahezeRelay> <pskyechology> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1392990715738591295/image.png?ex=68718b33&is=687039b3&hm=db03dfb3a574ab38690f679bee7bf65bf91be80f7c02eecc5dd2ff50d0dd4893& [22:09:50] <MirahezeRelay> <snowfleaf, replying to pskyechology> Skye Mirabeta [22:10:08] <MirahezeRelay> <pskyechology> skye.mirabeta.org says hi [22:21:19] <MirahezeRelay> <originalauthority, replying to pskyechology> Skynet is here? [22:21:48] <MirahezeRelay> <pskyechology, replying to originalauthority> wrong, skype is back [22:21:59] <MirahezeRelay> <originalauthority> Petition for WLM to come back [22:22:30] <MirahezeRelay> <pskyechology> msn? [22:22:37] <MirahezeRelay> <originalauthority> Windows live messenger [22:22:52] <MirahezeRelay> <pskyechology> same thing but rebranded [22:22:59] <MirahezeRelay> <originalauthority> Better than ever!!! [22:23:06] <MirahezeRelay> <originalauthority> Truly ahead of its time [22:27:48] <MirahezeRelay> <blankeclair, replying to originalauthority> WLW [22:28:22] <MirahezeRelay> <originalauthority, replying to blankeclair> Huh [22:29:55] <MirahezeRelay> <blankeclair, replying to originalauthority> [[WLW]] [22:29:55] <MirahezeRelay> <Wiki-Bot#2998> <https://meta.miraheze.org/wiki/WLW?action=edit&redlink=1> [22:29:59] <MirahezeRelay> <blankeclair> wait no [22:30:04] <MirahezeRelay> <blankeclair> [[w:WLW]] [22:30:04] <MirahezeRelay> <Wiki-Bot#2998> <https://en.wikipedia.org/wiki/WLW> [22:30:17] <MirahezeRelay> <awing_ding, replying to blankeclair> MLM [22:30:17] <MirahezeRelay> <originalauthority> ohhhh [22:30:19] <MirahezeRelay> <blankeclair> no, not that... [22:30:36] <MirahezeRelay> <blankeclair> https://en.wikipedia.org/wiki/Woman_loving_women [22:30:39] <MirahezeRelay> <originalauthority, replying to blankeclair> 3rd time lucky? [22:30:54] <MirahezeRelay> <blankeclair, replying to awing_ding> T4T [22:30:54] <MirahezeRelay> <originalauthority> isn't that just being a lesbian [22:31:14] <MirahezeRelay> <blankeclair, replying to originalauthority> sapphism or WLW [22:31:19] <MirahezeRelay> <blankeclair> wait no [22:31:29] <MirahezeRelay> <blankeclair> WLW can also apply to bisexuals [22:31:35] <MirahezeRelay> <originalauthority> ohhh [22:31:39] <MirahezeRelay> <blankeclair> since bisexuals can also love women [22:31:48] <MirahezeRelay> <originalauthority> everyone loves women! [22:31:54] <MirahezeRelay> <originalauthority> long live the qween [22:31:57] <MirahezeRelay> <blankeclair> and lesbian (in current language at least) means an exclusive attraction to women [22:32:10] <MirahezeRelay> <blankeclair, replying to originalauthority> rip gay men [22:32:12] <MirahezeRelay> <awing_ding, replying to originalauthority> Nah :stare: [22:32:14] <MirahezeRelay> <originalauthority> _men in womans fields) [22:32:22] <MirahezeRelay> <blankeclair> ? [22:32:50] <MirahezeRelay> <blankeclair, replying to originalauthority> https://deltarune.wiki/images/Queen_battle.gif?cb=ss3i2o [22:42:58] <MirahezeRelay> <bitbyte10> the queen's chariot cannot be stopped [22:58:24] <MirahezeRelay> <cysjunk> I'm looking for some wiki creation advice [22:58:40] <MirahezeRelay> <cysjunk> [1/2] > A wiki for the BBC TV show "Mongrels". Recently I was trying to edit mongrels.fandom.com and found that their spam filter blocks words which are actually used in official character descriptions and episode transcripts (i.e. "retarded"). I reported it as a spam filter problem however they decided to poorly remove the language from the page rather than making an exception (i.e. "bord [22:58:40] <MirahezeRelay> <cysjunk> [2/2] erline-retarded" became "borderline", "semi-retarded" became "semi-disabled"). I want to copy the contents of the Fandom wiki (which is mostly inactive with no edits since January except for recent edits I've been doing) to Miraheze and improve upon it. [22:58:43] <MirahezeRelay> <cysjunk> this should explain why [22:59:17] <MirahezeRelay> <cysjunk> the only thing about it is that I'm not really a staff member on the Fandom wiki but none of the administrators seem to have made any edits on the wiki since at least 2011 or 2012 and [22:59:54] <MirahezeRelay> <cysjunk> I want to copy all of the pages from the Fandom wiki onto Miraheze and improve upon them/have it available for others to edit/improve [23:00:42] <MirahezeRelay> <cysjunk> should I still go ahead and submit a wiki request [23:01:29] <MirahezeRelay> <pskyechology> forking is something you can do, yes [23:01:44] <MirahezeRelay> <cysjunk> yes but since I'm not staff of that wiki I was wondering if it would be any different [23:02:02] <MirahezeRelay> <pskyechology> nope! :p [23:02:16] <MirahezeRelay> <cysjunk> there also seems to be no wiki dump so it's going to have to be a manual fork [23:02:25] <MirahezeRelay> <blankeclair, replying to cysjunk> i can make one if you want to lol :p [23:02:36] <MirahezeRelay> <blankeclair> (in a personal capacity) [23:02:41] <MirahezeRelay> <cysjunk> that would be appreciated [23:02:57] <MirahezeRelay> <cysjunk> although I am a bit of a noob at MediaWiki I do know how to edit Fandom already so I can probably get something going [23:03:09] <MirahezeRelay> <blankeclair> (i need a link to the wiki ^^;) [23:03:14] <MirahezeRelay> <pskyechology> you can also ask fandom support for a dump btw [23:03:17] <MirahezeRelay> <blankeclair> oh wait, you put it up there [23:03:18] <MirahezeRelay> <cysjunk> https:/mongrels.fandom.com [23:03:34] <MirahezeRelay> <blankeclair> now dumping [23:03:40] <MirahezeRelay> <pskyechology> damn that was quick [23:03:46] <MirahezeRelay> <cysjunk> [1/2] I've drafted a wiki name and logo already [23:03:46] <MirahezeRelay> <cysjunk> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1393004802526543872/image.png?ex=68719851&is=687046d1&hm=7a0012e4255dc4b010c91b1ec61dc5a91b50adeac5bd5a911f20ebf39b3505d9& [23:03:50] <MirahezeRelay> <blankeclair> i already ssh'd into my pi lol [23:04:16] <MirahezeRelay> <pskyechology> already more effort than a bunch of wikis lol [23:04:43] <MirahezeRelay> <blankeclair> fun fact: our wiki's logo is meant to be a placeholder [23:04:50] <MirahezeRelay> <blankeclair> but it seems like it's effectively gonna be here to stay x3 [23:04:57] <MirahezeRelay> <pskyechology> nothing like a permanent placeholder [23:04:59] <MirahezeRelay> <blankeclair> something something temporary solutions [23:05:05] <MirahezeRelay> <cysjunk> [1/3] An example of a page I was in the middle of working on [23:05:06] <MirahezeRelay> <cysjunk> [2/3] I'm not sure if I'll continue doing anything on the Fandom wiki [23:05:06] <MirahezeRelay> <cysjunk> [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1393005136908910692/image.png?ex=687198a1&is=68704721&hm=f6c356d4e9a9bc5fc0c40ef53dfab7f277925bb7b7eee20f7373cd0002dbef7a& [23:05:21] <MirahezeRelay> <cysjunk> https://cdn.discordapp.com/attachments/407537962553966603/1393005202528800859/image.png?ex=687198b1&is=68704731&hm=4739c2360d71d9ef46966babb902a20190989b70f4a6f2f2d8fca5ca7abbed8f& [23:09:39] <MirahezeRelay> <cysjunk, replying to cysjunk> [1/3] the edits in particular [23:09:40] <MirahezeRelay> <cysjunk, replying to cysjunk> [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1393006283736744046/image.png?ex=687199b2&is=68704832&hm=13ddad777dd0b5e7375906dba17859e7ee4a843a297561f0780204bc21466ade& [23:09:40] <MirahezeRelay> <cysjunk, replying to cysjunk> [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1393006284080414751/image.png?ex=687199b2&is=68704832&hm=1f3c0956348921408dcafbf317431f593068eddbef25999a26ccf653363e7473& [23:09:56] <MirahezeRelay> <cysjunk> [1/2] https://cdn.discordapp.com/attachments/407537962553966603/1393006353005674567/image.png?ex=687199c3&is=68704843&hm=2701d27d75a282a183982a60a168ea0653eb22cb54024a4f152e35dc87f2e4c7& [23:09:56] <MirahezeRelay> <cysjunk> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1393006353282240734/image.png?ex=687199c3&is=68704843&hm=ed0421ac89c52c988242189ba3e4f933491cc1054c876686daa6f63b079173de& [23:10:17] <MirahezeRelay> <blankeclair> (i feel like a diff would be better to parse ^^;) [23:10:47] <MirahezeRelay> <cysjunk> https://cdn.discordapp.com/attachments/407537962553966603/1393006571063345253/image.png?ex=687199f7&is=68704877&hm=a51960c7f77855f5479179585dfd3cc5a1aef3111b80aa82bbf19756c8543bb3& [23:10:57] <MirahezeRelay> <cysjunk> https://cdn.discordapp.com/attachments/407537962553966603/1393006613761097828/image.png?ex=68719a01&is=68704881&hm=9a310b70b1a79421680f9468b570335a3bcb67a1b5b0a53756d6841d39cf9d35& [23:11:26] <MirahezeRelay> <blankeclair> okay that's much better [23:11:30] <MirahezeRelay> <cysjunk> [1/2] the official character description for Marion says this [23:11:30] <MirahezeRelay> <cysjunk> [2/2] > A simple (some may say 'borderline retarded') soul, Marion is nothing if not highly corruptible. [23:11:44] <MirahezeRelay> <blankeclair> well [23:11:49] <MirahezeRelay> <blankeclair> "better" [23:12:01] <MirahezeRelay> <pskyechology> sheesh [23:15:58] <MirahezeRelay> <blankeclair, replying to cysjunk> https://archive.org/details/wiki-mongrels.fandom.com-20250710 [23:24:48] <MirahezeRelay> <cysjunk> nice [23:24:57] <MirahezeRelay> <cysjunk> https://cdn.discordapp.com/attachments/407537962553966603/1393010133394784437/wiki-mongrels.png?ex=68719d48&is=68704bc8&hm=2b242104b984e58d8486a4e082222926671f7169325e0621504555d95ade7a1a& [23:24:59] <MirahezeRelay> <cysjunk> this logo is ridiculous [23:25:04] <MirahezeRelay> <cysjunk> likely from MS Painrt [23:25:08] <MirahezeRelay> <blankeclair> yw :3 [23:26:20] <MirahezeRelay> <cysjunk> out of curiosity what is images-mismatch [23:27:15] <MirahezeRelay> <blankeclair> images that either are not the same size as recorded, or do not have the same contents as recorded [23:27:30] <MirahezeRelay> <blankeclair> you can see the reasons in errors.log in the dumpmeta folder [23:27:33] <MirahezeRelay> <cysjunk> ah [23:29:21] <MirahezeRelay> <cysjunk> and can this type of dump be imported into Miraheze [23:29:49] <MirahezeRelay> <pskyechology> yes [23:30:12] <MirahezeRelay> <cysjunk> alright [23:30:26] <MirahezeRelay> <cysjunk> [1/2] and finally should I check this checkbox [23:30:26] <MirahezeRelay> <cysjunk> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1393011514104873070/image.png?ex=68719e91&is=68704d11&hm=bea422a916b4e45604821ee26c3d0a84c213d3797bf0a72c11ddc71af2e00cd4& [23:30:45] <MirahezeRelay> <blankeclair> yeah [23:31:02] <MirahezeRelay> <blankeclair, replying to cysjunk> after the wiki is created, file a request to import the xml/pages in [[Special:RequestImport]] [23:31:02] <MirahezeRelay> <Wiki-Bot#2998> <https://meta.miraheze.org/wiki/Special:RequestImport> [23:31:10] <MirahezeRelay> <blankeclair> the images can be imported by requesting on [[Phorge]] [23:31:11] <MirahezeRelay> <Wiki-Bot#2998> <https://meta.miraheze.org/wiki/Phorge> [23:31:22] <MirahezeRelay> <blankeclair> (we _really_ should add image import support to Special:RequestImport istg) [23:31:22] <MirahezeRelay> <cysjunk> [1/2] alright [23:31:22] <MirahezeRelay> <cysjunk> [2/2] I've officially submitted the request [23:32:00] <MirahezeRelay> <blankeclair> > Only XML files are permitted. If your XML file is in a compressed archive, please extract it before attempting to upload. [23:32:03] <MirahezeRelay> <blankeclair> right, forgot about that lol [23:33:27] <MirahezeRelay> <blankeclair> here's the history decompressed: https://files.sharkgirl.ing/~claire/mongrels.fandom.com-20250710-history.xml [23:33:37] <MirahezeRelay> <originalauthority> Claireeeeeeeeeeeeeeeeee [23:33:41] <MirahezeRelay> <blankeclair> meow? [23:33:55] <MirahezeRelay> <originalauthority> How bored are you on a scale of 1-10 [23:34:11] <MirahezeRelay> <blankeclair> uhhhhhhhh hard to measure [23:34:26] <MirahezeRelay> <blankeclair> it's like a 3 because i keep waiting for me blood test results lol [23:34:51] <MirahezeRelay> <blankeclair> https://cdn.discordapp.com/attachments/407537962553966603/1393012625956147200/1752190490225.jpg?ex=68719f9a&is=68704e1a&hm=90b78fcc73ee390b89b2607ce1de6116219cc9915c678401ea92fdad9a76ac97& [23:34:57] <MirahezeRelay> <blankeclair> this is me, but for the past _48 hours_ [23:35:47] <MirahezeRelay> <originalauthority> do you wanna do quick ext security review for meeee pretty pleaseee (or anyone who knows about this stuff) [23:35:57] <MirahezeRelay> <originalauthority> (Feel free to say no heh) [23:36:03] <MirahezeRelay> <blankeclair> i also have laundry to do in the next four minutes [23:36:11] <MirahezeRelay> <blankeclair> my answer is: if executive dysfunction lets me [23:36:16] <MirahezeRelay> <blankeclair> or: maybe [23:36:28] <MirahezeRelay> <blankeclair> (it being done depends on executive dysfunction being cooperative) [23:36:35] <MirahezeRelay> <pskyechology> @originalauthority you have to jingle a bag of cat treats in front of her [23:36:56] <MirahezeRelay> <blankeclair> i was about to say estradiol valerate, but that's what i'm literally doing lol [23:37:17] <MirahezeRelay> <originalauthority> schnacks [23:37:32] <MirahezeRelay> <blankeclair> mmm yummy [23:37:38] <MirahezeRelay> <blankeclair> time to eat 100 mg worth of E [23:37:50] <MirahezeRelay> <blankeclair> (pro tip: DO NOT EAT 100 MG WORTH OF ESTROGEN) [23:37:59] <MirahezeRelay> <originalauthority> I thought you meant ecstasy then [23:38:02] <MirahezeRelay> <originalauthority> I was going to say [23:38:04] <MirahezeRelay> <blankeclair> oh- [23:38:05] <MirahezeRelay> <originalauthority> I would not recommend [23:38:11] <MirahezeRelay> <blankeclair> i would not recommend either [23:38:22] <MirahezeRelay> <blankeclair> unless if you're trying to go for blood clot estrogen% i guess [23:38:43] <MirahezeRelay> <blankeclair> actually, i feel like non-bioidentical estrogens could be worse? [23:38:45] <MirahezeRelay> <pskyechology> doctors hate this one simple trick to endanger your life! [23:38:52] <MirahezeRelay> <blankeclair> lmfao