Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Message box

From ProleWiki, the proletarian encyclopedia
Revision as of 13:02, 26 August 2024 by Forte (talk | contribs) (Adding mw-parser-output class to element so that TemplateStyles can affect it)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
local p = {}
function p.main(frame)
	local box = mw.html.create()
	:tag('table')
	:css('margin', '0 10%')
	:addClass('mw-parser-output')
	:addClass('mbox')
	local row = box:tag('tr')
	local imageLeftCell = row:tag('td'):addClass('mbox-image'):css('padding', '2px 0 2px 0.5em')
	imageLeftCell:tag('div'):css('width', '52px'):wikitext(frame.args.image or '[[File:Lenin open arms circle.png|52px|link=|alt=]]')
	local textCell = row:tag('td'):addClass('mbox-text'):css('padding', '0.25em 0.5em')
	:css('width', '100%')
	:tag('div'):wikitext(frame.args.text)
	return tostring(box)
end
return p