User contributions for Starfrost
Jump to navigation
Jump to search
16 April 2025
- 01:2701:27, 16 April 2025 diff hist +1,336 N Template:GPUs Q
- 01:1201:12, 16 April 2025 diff hist +2,342 N Module:Navbox/styles.css Created page with "→{{pp|small=y}}: .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1em auto 0; →Prevent preceding content from clinging to navboxes: } .navbox .navbox { margin-top: 0; →No top margin for nested navboxes: } .navbox + .navbox, →TODO: remove first line after transclusions have updated: .navbox + .navbox-styles + .navbox { margin-top: -1px; /* Single pix..." current
- 01:1201:12, 16 April 2025 diff hist +2,196 N Module:Infobox/styles.css Created page with "→{{pp|small=y}}: →* This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]] * DO NOT ADD THEM HERE: →* not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; borde..."
- 01:1201:12, 16 April 2025 diff hist +1,105 N Module:Navbar/styles.css Created page with "→{{pp|small=yes}}: .navbar { display: inline; font-size: 88%; font-weight: normal; } .navbar-collapse { float: left; text-align: left; } .navbar-boxtext { word-spacing: 0; } .navbar ul { display: inline-block; white-space: nowrap; line-height: inherit; } .navbar-brackets::before { margin-right: -0.125em; content: '[ '; } .navbar-brackets::after { margin-left: -0.125em; content: ' ]'; } .navbar li { word-spacing: -0.125em; } .navbar a > span, .nav..." current
- 01:1101:11, 16 April 2025 diff hist +2,922 N Template:Hlist/styles.css Created page with "→{{pp-protected|reason=match parent|small=yes}}: →* hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * [[MediaWiki talk:Common.css/to do#hlist-separated]]: /* * TODO: When the majority of readership supports it (or s..." current
- 01:0801:08, 16 April 2025 diff hist +915 N Module:Navbar/configuration Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis..." current
- 01:0701:07, 16 April 2025 diff hist +5,296 N Module:Navbar Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false..." current
- 00:5800:58, 16 April 2025 diff hist +6,119 N Module:Color contrast/colors Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511..." current
- 00:5700:57, 16 April 2025 diff hist +6,967 N Module:Color contrast Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..." current
- 00:5600:56, 16 April 2025 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
- 00:5500:55, 16 April 2025 diff hist +16,577 N Module:TableTools Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke...." current
- 00:5400:54, 16 April 2025 diff hist +5,455 N Module:Navbox/configuration Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {..." current
- 00:5300:53, 16 April 2025 diff hist −182 Template:Infobox No edit summary current
- 00:5300:53, 16 April 2025 diff hist +20,533 N Module:Infobox Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..." current
- 00:5200:52, 16 April 2025 diff hist +29,178 N Module:Navbox Created page with "require('strict') local p = {} local cfg = mw.loadData('Module:Navbox/configuration') local inArray = require("Module:TableTools").inArray local getArgs -- lazily initialized local hiding_templatestyles = {} -- global passthrough variables local passthrough = { [cfg.arg.above]=true,[cfg.arg.aboveclass]=true,[cfg.arg.abovestyle]=true, [cfg.arg.basestyle]=true, [cfg.arg.below]=true,[cfg.arg.belowclass]=true,[cfg.arg.belowstyle]=true, [cfg.arg.bodyclass]=true, [cfg.a..." current
- 00:5100:51, 16 April 2025 diff hist +75 N Template:Navbox Created page with "<onlyinclude>{{#invoke:Navbox|navbox}}</onlyinclude> Category:Templates" current
- 00:4800:48, 16 April 2025 diff hist −44 Template:Infobox No edit summary
- 00:4600:46, 16 April 2025 diff hist +566 N Template:Infobox Created page with "<onlyinclude><templatestyles src="Infobox/styles.css" /> <table class="infobox {{{bodyclass|}}}">{{#if: {{{title|}}} | <caption class="ib-title" {{#if: {{{title tooltip|}}}|title="{{{title tooltip|}}}"}}>{{{title}}}</caption> }} {{#if: {{{above|}}} | <tr><th colspan="2" class="ib-above">{{{above}}}</th></tr> }} {{#if: {{{subheader|}}} | <tr><td colspan="2" class="ib-subheader">{{{subheader}}}</td></tr>}} {{{1}}} {{#if: {{{below|}}} | <tr><td colspan="2" class="ib-below">..."
- 00:4600:46, 16 April 2025 diff hist −54 Main Page No edit summary
- 00:4500:45, 16 April 2025 diff hist +47 Nvidia No edit summary
- 00:4500:45, 16 April 2025 diff hist +146 Nvidia No edit summary
- 00:4400:44, 16 April 2025 diff hist +849 N Nvidia Created page with "'''Nvidia''' is a computer graphics, AI and machine learning company, and one of the largest companies by market cap in the world. The company were founded by three engineers, Curtis Priem, Chris Malachowsky and Jen-Hsun Huang (more commonly known as "Jensen"), in 1993. The company is most well known for its line of consumer-oriented graphics cards, starting with the NV1 in 1995, with the most recent product line (the GeForce RTX 50 series, based off of their 18th majo..."
- 00:2700:27, 16 April 2025 diff hist −641 Main Page No edit summary