Module:Message box: Difference between revisions

608 bytes removed ,  30 May 2022
m
1 revision imported
(support templatestyles)
m (1 revision imported)
 
(One intermediate revision by the same user not shown)
Line 349: Line 349:
self.imageRight = imageRight
self.imageRight = imageRight
end
end
-- set templatestyles
self.templatestyles = args.templatestyles
end
end


Line 485: Line 482:
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
))
))
end
-- Add support for a single custom templatestyles sheet. Undocumented as
-- need should be limited and many templates using mbox are substed; we
-- don't want to spread templatestyles sheets around to arbitrary places
-- TODO: Add each template's stylesheet, waiting on [[MediaWiki talk:Common.css/to do]]
local frame = mw.getCurrentFrame() -- we'll need this unconditionally for the TODO
if self.templatestyles then
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.templatestyles },
})
end
end