Module:Message box: Difference between revisions

From ProleWiki, the proletarian encyclopedia
mNo edit summary
mNo edit summary
Line 11: Line 11:
local imageLeftCell = row:tag('td'):addClass('mbox-image')
local imageLeftCell = row:tag('td'):addClass('mbox-image')
imageLeftCell:tag('div'):css('width', '52px')
imageLeftCell:tag('div'):css('width', '52px')
imageLeftCell:wikitext('[[File:Lenin citation-needed.svg|52px|link=|alt=]]')
imageLeftCell:wikitext('[[File:Lenin open arms circle.png|52px|link=|alt=]]')
local textCell = row:tag('td'):addClass('mbox-text')
local textCell = row:tag('td'):addClass('mbox-text')
:wikitext(frame.args.text)
:wikitext(frame.args.text)

Revision as of 17:57, 14 November 2021

local p = {}
function p.main(frame)
	local box = mw.html.create()
	:tag('table')
	:css('margin', '0 10%')
	:css('border', '1px solid #a2a9b1')
	:css('background-color', '#fbfbfb')
	:css('border-left', '10px solid #b50014')
	:addClass('mbox')
	local row = box:tag('tr')
	local imageLeftCell = row:tag('td'):addClass('mbox-image')
	imageLeftCell:tag('div'):css('width', '52px')
	imageLeftCell:wikitext('[[File:Lenin open arms circle.png|52px|link=|alt=]]')
	local textCell = row:tag('td'):addClass('mbox-text')
	:wikitext(frame.args.text)
	return tostring(box)
end
return p