Recent changes
More actions
Track the most recent changes to the wiki on this page.
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
5 April 2026
|
|
00:29 | Main Page 3 changes history +137 [TickoGrey (3×)] | |||
|
|
00:29 (cur | prev) +2 TickoGrey talk contribs | ||||
|
|
00:29 (cur | prev) 0 TickoGrey talk contribs | ||||
|
|
00:26 (cur | prev) +135 TickoGrey talk contribs | ||||
| N 00:28 | Module:Navpills/styles.css diffhist +1,829 TickoGrey talk contribs (Created page with ".template-navpills { display: grid; gap: 0.5rem; →Adjusted for better spacing: grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); grid-auto-rows: 3rem; font-size: 0.8rem; →Slightly increased for better visibility: } .template-navpill { position: relative; border: 1px solid #444; →A lighter border to increase visibility: border-radius: 0.5rem; →Adjusted for a softer look: font-weight: 600; /* Bold text for be...") | ||||
|
|
00:28 | (Upload log) [TickoGrey (3×)] | |||
|
|
00:28 TickoGrey talk contribs uploaded File:Industries.webp | ||||
|
|
00:27 TickoGrey talk contribs uploaded File:Rails.webp | ||||
|
|
00:27 TickoGrey talk contribs uploaded File:Trains.webp | ||||
4 April 2026
| 23:54 | Upload log TickoGrey talk contribs uploaded File:Overfreight Wiki Logo.webp | ||||
| 22:34 | MediaWiki:Common.css diffhist +72 TickoGrey talk contribs | ||||
|
|
N 22:33 | MediaWiki:Citizen.js 5 changes history +413 [TickoGrey (5×)] | |||
|
|
22:33 (cur | prev) −43 TickoGrey talk contribs | ||||
|
|
22:32 (cur | prev) +28 TickoGrey talk contribs | ||||
|
|
22:31 (cur | prev) +2 TickoGrey talk contribs | ||||
|
|
22:28 (cur | prev) −162 TickoGrey talk contribs | ||||
| N |
|
22:24 (cur | prev) +588 TickoGrey talk contribs (Created page with "→All JavaScript here will be loaded for users of the Citizen skin: →Current version of MediaWiki does not support ES6: mw.loader.using(['mediawiki.util']).done(function () { →Open the search <details> element when clicking the fake search button on main page: var searchTrigger = document.getElementById('citizen-search-trigger'); if (searchTrigger) { searchTrigger.addEventListener('click', function () { var search = document.getElementById('citizen-se...") | |||
| 22:21 | Main Page diffhist −725 TickoGrey talk contribs (Replaced content with "__NOTOC__ {{Main_Page/header}}") | ||||
| N 22:20 | Template:Main Page/header/styles.css diffhist +1,184 TickoGrey talk contribs (Created page with ".home-header { position: relative; line-height: 1.1; text-align: center; } .home-header__pretitle { margin-bottom: 0.5rem; color: #6b7280; font-size: 0.875rem; letter-spacing: 0.05em; } .home-header__title { margin: 0; font-size: 3.5rem; line-height: 0.9; font-weight: 600; } .home-header__subtitle { margin-top: 0.5rem; color: #6b7280; font-size: 0.875rem; } .home-header__search { padding: 1rem; margin-top: 2rem; margin-left: auto; margin-right: auto...") | ||||
| N 22:19 | Template:Main Page/header diffhist +381 TickoGrey talk contribs (Created page with "<templatestyles src="Template:Main_Page/header/styles.css"/><div class="home-header"> <div class="home-header__pretitle">Welcome to the</div> <h1 class="home-header__title">Overfreight! Wiki</h1> <div id="citizen-search-trigger" class="home-header__search scw-gradient-glow" role="button"> <span class="home-header__searchText">Search the Overfreight! Wiki</span> </div> </div>") | ||||
| N 22:17 | Navpills/styles.css diffhist +1,829 TickoGrey talk contribs (Created page with ".template-navpills { display: grid; gap: 0.5rem; →Adjusted for better spacing: grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); grid-auto-rows: 3rem; font-size: 0.8rem; →Slightly increased for better visibility: } .template-navpill { position: relative; border: 1px solid #444; →A lighter border to increase visibility: border-radius: 0.5rem; →Adjusted for a softer look: font-weight: 600; /* Bold text for be...") | ||||
|
|
N 22:17 | Module:Navpills 2 changes history +1,539 [TickoGrey (2×)] | |||
| N |
|
22:17 (cur | prev) +1,539 TickoGrey talk contribs (Created page with "local mArguments --initialize lazily local p = {} -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix, args) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.s...") | |||
| N |
|
00:51 (cur | prev) +1,539 TickoGrey talk contribs (Created page with "local mArguments --initialize lazily local p = {} -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix, args) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.s...") | |||
| N 22:17 | Template:Navpills diffhist +29 TickoGrey talk contribs (Created page with "{{#invoke:Navpills|navpills}}") | ||||
| N 22:16 | Module:Arguments diffhist +10,054 TickoGrey talk contribs (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'...") | ||||
| N 00:50 | Module:Navpills/styles.css diffhist +1,829 TickoGrey talk contribs (Created page with ".template-navpills { display: grid; gap: 0.5rem; →Adjusted for better spacing: grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); grid-auto-rows: 3rem; font-size: 0.8rem; →Slightly increased for better visibility: } .template-navpill { position: relative; border: 1px solid #444; →A lighter border to increase visibility: border-radius: 0.5rem; →Adjusted for a softer look: font-weight: 600; /* Bold text for be...") | ||||
3 April 2026
|
|
N 20:44 | MediaWiki:Citizen-footer-tagline 2 changes history 0 [TickoGrey (2×)] | |||
|
|
20:44 (cur | prev) −45 TickoGrey talk contribs (Blanked the page) Tag: Blanking | ||||
| N |
|
20:38 (cur | prev) +45 TickoGrey talk contribs (Created page with "Hosted by TickoGrey, written by the community") | |||
| N 20:39 | MediaWiki:Common.css diffhist +156 TickoGrey talk contribs (Created page with "→CSS placed here will be applied to all skins: →Hide disclaimers page link in Citizen skin footer: #footer-places-disclaimer { display: none; }") | ||||
| N 20:38 | MediaWiki:Citizen-footer-desc diffhist +30 TickoGrey talk contribs (Created page with "The official Overfreight! wiki") | ||||