Content deleted Content added
add class to bubble |
fix |
||
Line 153:
local bubble = function(text, colour, conflict, style)
local out = mw.html.create('span')
:addClass('wpb-header-bubbles')
:addClass(style)
:css('background', colour)
:css('border', conflict_colour)
▲ :css('border', conflict and cfg.banner_shell.conflict.border or (cfg.quality.border..' '..colour))
:wikitext(text)
return tostring(out)
|