User contributions for Kelpwing
Appearance
29 April 2026
- 09:2409:24, 29 April 2026 diff hist +311 N Template:Fmbox Created page with "<onlyinclude>{{#invoke:Message box|fmbox}}</onlyinclude> <noinclude> <templatedata> { "params": { "type": { "description": "speedy / delete / content / style / notice / move / protection" }, "text": { "description": "The message body text." } }, "description": "" } </templatedata> </noinclude>" Tag: 2017 source edit
- 09:2309:23, 29 April 2026 diff hist +311 N Template:Cmbox Created page with "<onlyinclude>{{#invoke:Message box|cmbox}}</onlyinclude> <noinclude> <templatedata> { "params": { "type": { "description": "speedy / delete / content / style / notice / move / protection" }, "text": { "description": "The message body text." } }, "description": "" } </templatedata> </noinclude>" Tag: 2017 source edit
- 09:2209:22, 29 April 2026 diff hist +311 N Template:Ambox Created page with "<onlyinclude>{{#invoke:Message box|ambox}}</onlyinclude> <noinclude> <templatedata> { "params": { "type": { "description": "speedy / delete / content / style / notice / move / protection" }, "text": { "description": "The message body text." } }, "description": "" } </templatedata> </noinclude>" Tag: 2017 source edit
- 09:2009:20, 29 April 2026 diff hist +255 Template:Ombox No edit summary Tag: 2017 source edit
28 April 2026
- 12:1212:12, 28 April 2026 diff hist +45 N Sandbox Created page with "{{Character|name=|gender=|pronouns=|status=}}" Tag: 2017 source edit
27 April 2026
- 22:3222:32, 27 April 2026 diff hist +6,798 N Module:Message box/configuration Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current
- 22:3222:32, 27 April 2026 diff hist +10,054 N Module:Arguments Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'..." current
- 22:3222:32, 27 April 2026 diff hist +7,871 N Module:Category handler Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia..." current
- 22:3122:31, 27 April 2026 diff hist +745 N Module:Yesno Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =..." current
- 22:3022:30, 27 April 2026 diff hist +18,558 N Module:Message box Created page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('strict') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = '..." current
- 10:3610:36, 27 April 2026 diff hist +1,974 N Module:Message box/tmbox.css Created page with "→{{pp|small=y}}: .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; →Default "notice" gray-brown: background-color: #f8eaba; box-sizing: border-box; } →For the "small=yes" option.: .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; →Red: background-color: #fee7e6; →Pink: } .tmbox-delete { border: 2px solid #b32424; →Red: } .tmbox-content { bord..." current
- 10:3610:36, 27 April 2026 diff hist +2,313 N Module:Message box/ombox.css Created page with "→* * {{ombox}} (other pages message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.ombox { margin: 4px 10%; border-collapse: collapse; →Default "notice" gray: border: 1px solid #a2a9b1; background-color: #f8f9fa; color: #333; box-sizing: border-box; } →An empty narrow cell: .ombox td.mbox-empty-cell { border: none; padding: 0; width: 1px; } →The message body cell(s): .om..." current
- 10:3510:35, 27 April 2026 diff hist +2,663 N Module:Message box/imbox.css Created page with "→* * {{imbox}} (image message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.imbox { margin: 4px 10%; border-collapse: collapse; →Default "notice" blue: border: 3px solid var(--border-color-progressive, #36c); background-color: var(--background-color-neutral-subtle, #f8f9fa); box-sizing: border-box; } →For imboxes inside imbox-text cells.: .imbox .mbox-text .imbox { /* 0.9 - 0.5..." current
- 10:3410:34, 27 April 2026 diff hist +1,041 N Module:Message box/fmbox.css Created page with "→Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes: th.mbox-text, td.mbox-text { →The message body cell(s): padding: 0.25em 0.9em; →0.9em left/right: } td.mbox-image { →The left image cell: padding: 2px 0 2px 0.9em; →0.9em left, 0px right: } td.mbox-imageright { →The right image cell: padding: 2px 0.9em 2px 0; →0px left, 0.9em right: } →Footer and header message box styles: table.fmb..." current
- 10:1710:17, 27 April 2026 diff hist +1,886 N Module:Message box/cmbox.css Created page with "→* * {{cmbox}} (category message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.cmbox { margin: 3px 10%; border-collapse: collapse; border: 1px solid var(--border-color-base, #a2a9b1); →Default "notice" light blue: background-color: var(--background-color-progressive-subtle--hover, #d9e2ff); color: var(--color-base, #202122); box-sizing: border-box; } →An empty narrow cell: .cmb..." current
- 10:1610:16, 27 April 2026 diff hist +2,863 N Module:Message box/ambox.css Created page with "→* * {{ambox}} (article message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.ambox { →10% = Will not overlap with other elements: margin: 0 10%; →Prevent overflow in narrow screens (<=850px) in the Timeless skin. See [[Skin:Timeless#Less than 851 pixels]] and https://phabricator.wikimedia.org/source/Timeless/browse/REL1_39/resources/screen-mobile.less$268: width: unset; b..." current
21 April 2026
- 12:0112:01, 21 April 2026 diff hist −2 Main Page No edit summary Tag: 2017 source edit
- 12:0012:00, 21 April 2026 diff hist +3 Main Page No edit summary Tag: 2017 source edit
- 11:5911:59, 21 April 2026 diff hist +34 Main Page No edit summary Tag: 2017 source edit
- 11:5811:58, 21 April 2026 diff hist −94 MediaWiki:Common.css No edit summary current Tag: Manual revert
- 11:5811:58, 21 April 2026 diff hist +27 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:5711:57, 21 April 2026 diff hist +67 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:5711:57, 21 April 2026 diff hist −52 Main Page No edit summary Tags: Manual revert 2017 source edit
- 11:5611:56, 21 April 2026 diff hist +52 Main Page No edit summary Tags: Reverted 2017 source edit
- 11:5511:55, 21 April 2026 diff hist −1 Main Page No edit summary Tag: 2017 source edit
- 11:5411:54, 21 April 2026 diff hist −38 MediaWiki:Common.css No edit summary
- 11:5311:53, 21 April 2026 diff hist +13 Main Page No edit summary Tag: 2017 source edit
- 11:5211:52, 21 April 2026 diff hist −63 MediaWiki:Common.css No edit summary
- 11:5111:51, 21 April 2026 diff hist −1 MediaWiki:Common.css No edit summary
- 11:5011:50, 21 April 2026 diff hist +12 MediaWiki:Common.css No edit summary
- 11:4911:49, 21 April 2026 diff hist −28 MediaWiki:Common.css No edit summary
- 11:4811:48, 21 April 2026 diff hist +28 MediaWiki:Common.css No edit summary
- 11:4611:46, 21 April 2026 diff hist +33 MediaWiki:Common.css No edit summary
- 11:4311:43, 21 April 2026 diff hist −78 MediaWiki:Common.css No edit summary Tag: Manual revert
- 11:4111:41, 21 April 2026 diff hist +35 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:4111:41, 21 April 2026 diff hist +44 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:3911:39, 21 April 2026 diff hist 0 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:3711:37, 21 April 2026 diff hist +13 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:3611:36, 21 April 2026 diff hist −14 MediaWiki:Common.css No edit summary Tag: Reverted
- 11:3611:36, 21 April 2026 diff hist +123 MediaWiki:Common.css No edit summary
- 11:3411:34, 21 April 2026 diff hist +42 MediaWiki:Common.css No edit summary
- 11:2711:27, 21 April 2026 diff hist −75 MediaWiki:Common.css No edit summary
- 11:2611:26, 21 April 2026 diff hist +82 MediaWiki:Common.css No edit summary
- 11:2411:24, 21 April 2026 diff hist −6 MediaWiki:Common.css No edit summary
- 11:2211:22, 21 April 2026 diff hist +9 MediaWiki:Common.css No edit summary
- 11:2111:21, 21 April 2026 diff hist −12 MediaWiki:Common.css No edit summary
- 11:2011:20, 21 April 2026 diff hist −1 MediaWiki:Common.css No edit summary
- 11:2011:20, 21 April 2026 diff hist +25 MediaWiki:Common.css No edit summary
- 11:1711:17, 21 April 2026 diff hist +7 MediaWiki:Common.css No edit summary
- 11:1311:13, 21 April 2026 diff hist +8 MediaWiki:Common.css No edit summary