Module:Navbox: Difference between revisions

navigation div instead of single-cell table wrapper
(Kill nowikis)
(navigation div instead of single-cell table wrapper)
Line 116:
 
titleCell
:tag('div')
:addClassattr('id', mw.uri.anchorEncode(args.titleclasstitle))
:cssaddClass('font-size', '114%'args.titleclass)
:wikitextcss(addNewline(args.title)'font-size', '114%')
:wikitext(addNewline(args.title))
end
 
Line 360 ⟶ 361:
local res = mw.html.create()
if border == 'none' then
local nav = res:nodetag(tbl'div')
:attr('role', 'navigation')
:node(tbl)
if args.title then
nav:attr('aria-labelledby', mw.uri.anchorEncode(args.title))
else
nav:attr('aria-label', 'Navbox')
end
elseif border == 'subgroup' or border == 'child' then
-- We assume that this navbox is being rendered in a list cell of a parent navbox, and is
Line 370 ⟶ 378:
:wikitext('<div>') -- XXX: hack due to lack of unclosed support in mw.html.
else
local nav = res:tag('div')
:tagattr('tablerole', 'navigation')
:addClass('navbox')
:csscssText('border-spacing', 0args.bodystyle)
:cssText(args.bodystylestyle)
:cssTextcss(args.style'padding', '3px')
:tagnode('tr'tbl)
if args.title :tag('td')then
nav:cssattr('paddingaria-labelledby', '2px'mw.uri.anchorEncode(args.title))
:node(tbl)else
nav:attr('aria-label', 'Navbox')
end
end