Content deleted Content added
trying a simpler method, just a row border |
try pure CSS solution |
||
Line 9:
local args
local border
local listnums = {}
Line 78 ⟶ 77:
end
return item
local newRow = tbl:tag('tr')▼
end
Line 111 ⟶ 97:
if not args.title then return end
local titleRow =
if args.titlegroup then
Line 169 ⟶ 155:
if not args.above then return end
:tag('td')
:addClass('navbox-abovebelow')
Line 183 ⟶ 169:
if not args.below then return end
tbl:tag('tr')
:tag('td')
:addClass('navbox-abovebelow')
Line 198 ⟶ 184:
--
local function renderListRow(tbl, index, listnum)
local row =
if index == 1 and args.imageleft then
|