Content deleted Content added
+nocat parameter; request by Andrybak |
Plastikspork (talk | contribs) Remove per this discussion, also there is no "mox" it should have been "moz" so this wasn't doing anything for Mozilla browsers :) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 18:
local ret = mw.html.create('table')
:attr('role', 'presentation')
:addClass('userboxes')
:css( {
Line 26 ⟶ 27:
clear = args.align or 'right',
color = args.textcolor or '#000000',
border = (args.bordercolor or '#99B3FF') .. ' solid ' .. (args.solid or 1)..'px'
} )
Line 32 ⟶ 33:
if args.shadow and string.lower(args.shadow) == 'yes' then
ret:css({ ['box-shadow'] = '0 2px 4px rgb(0,0,0,0.2)'
end
|