Related changes
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
11 April 2026
|
|
N 17:00 | Template:Page tabs/doc 2 changes history +3,160 [Editor (2×)] | |||
|
|
17:00 (cur | prev) +32 Editor talk contribs | ||||
| N |
|
16:59 (cur | prev) +3,128 Editor talk contribs (Created page with "'''Page tabs''' creates horizontal navigation tabs on a page. You can specify which tab is active, set custom background and text colors for each tab. === Basic Usage === <pre> {{Page tabs | NOTOC = true | User:Example | User:Example/Subpage 1 | Second subpage | User:Example/Subpage 3 | This = 2 }} </pre> * '''NOTOC''' – If set to true, disables the automatic table of contents. * '''This''' – Number of the active tab (1-base...") | |||
| N 16:58 | Module:Page tabs diffhist +1,687 Editor talk contribs (Created page with "-- This module implements {{Page tabs}}. local getArgs = require('Module:Arguments').getArgs local yesno = require('Module:Yesno') local p = {} function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local makeTab = p.makeTab local root = mw.html.create() root:wikitext(yesno(args.NOTOC) and '__NOTOC__' or nil) local row = root:tag('div') :css('background', args.Background or '#f8fcff') :css('color', 'black') :css...") | ||||
| N 16:57 | Template:Page tabs/styles.css diffhist +1,766 Editor talk contribs (Created page with "→{{pp-template}}: .template-page-tabs { background: #F8FCFF; color:black; width: 100%; display: flex; flex-wrap: wrap; margin-bottom: -4px; } .template-page-tabs > span { padding: 0.5em; line-height: 0.95em; border: solid 2px #a3b1bf; white-space: nowrap; margin-bottom: 4px; } .template-page-tabs > span.spacer { display: flex; →hides any whitespace we put inside: padding: 0; flex: 9px; border-width: 0 0 2px 0; } .template-page-tabs > span.sp...") | ||||