کاربر ناشناس
پودمان:Shortcut: تفاوت میان نسخهها
بازگرداندن اصلاح راست به چپ
جز (۱ نسخه واردشده) |
imported>Ebrahim (بازگرداندن اصلاح راست به چپ) |
||
خط ۴۲: | خط ۴۲: | ||
-- Return an error if we have nothing to display | -- Return an error if we have nothing to display | ||
-- Edit : Don't return Error even if there's nothing to display. This is used to fix errors in boxes that don't require this parameter and template to work. | |||
if #listItems < 1 then | if #listItems < 1 then | ||
local msg = cfg['no-content-error'] | local msg = cfg['no-content-error'] | ||
خط ۴۸: | خط ۴۹: | ||
msg = msg .. makeCategoryLink(cfg['no-content-error-category']) | msg = msg .. makeCategoryLink(cfg['no-content-error-category']) | ||
end | end | ||
return | return | ||
end | end | ||
خط ۷۸: | خط ۷۹: | ||
-- Shortcut box | -- Shortcut box | ||
local shortcutList = root | local shortcutList = root | ||
:tag(' | :tag('div') | ||
:addClass('shortcutbox noprint') | :addClass('shortcutbox plainlist noprint') | ||
:attr('role', 'note') | |||
:css('float', 'left') | :css('float', 'left') | ||
:css('border', '1px solid # | :css('border', '1px solid #a2a9b1') | ||
:css('background', '#fff') | :css('background', '#fff') | ||
:css('margin', '.3em 1em .3em .3em') | :css('margin', '.3em 1em .3em .3em') | ||
:css('padding', ' | :css('padding', '.4em .6em') | ||
:css('text-align', 'center') | :css('text-align', 'center') | ||
:css('font-size', 'smaller') | |||
:css('line-height', '2em') | |||
:css('font-weight', 'bold') | |||
:wikitext(shortcutHeading) | |||
:tag('ul') | |||
for i, item in ipairs(listItems) do | for i, item in ipairs(listItems) do | ||
shortcutList:tag('li'):wikitext(item) | shortcutList:tag('li'):wikitext(item) | ||
end | end | ||