Jump to content

Editing Module:Sidebar

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 53: Line 53:
end
end


-- do we want a navbar
-- will be wanted later for finding hlist
local function has_navbar(navbar_mode, sidebar_name)
local function has_navbar(navbar_mode, sidebar_name)
return navbar_mode ~= cfg.i18n.navbar_none and
return navbar_mode ~= cfg.i18n.navbar_none and
Line 85: Line 87:
-- there are a lot of list classes in the wild, so we add their TemplateStyles
-- there are a lot of list classes in the wild, so we add their TemplateStyles
local function add_list_styles(args)
local function add_list_styles(args)
local frame = mw.getCurrentFrame()
local function add_list_templatestyles(htmlclass, templatestyles)
local function add_list_templatestyles(htmlclass, templatestyles)
local frame = mw.getCurrentFrame()
if has_list_class(args, htmlclass) then
if has_list_class(args, htmlclass) then
return frame:extensionTag{
return frame:extensionTag{
Line 95: Line 97:
end
end
end
end
-- TODO: get hlist to the point where we can turn this on
local plainlist_styles = add_list_templatestyles('plainlist', cfg.i18n.plainlist_templatestyles)
-- see [[MediaWiki talk:Common.css/to do#Hlist]]
local hlist_styles = add_list_templatestyles('hlist', cfg.i18n.hlist_templatestyles)
local plainlist_styles = add_list_templatestyles('plainlist', 'Plainlist/styles.css')
-- a second workaround for [[phab:T303378]]
-- when that issue is fixed, we can actually use has_navbar not to emit the
-- tag here if we want
if has_navbar(args.navbar, args.name) and hlist_styles == '' then
hlist_styles = frame:extensionTag{
name = 'templatestyles', args = { src = cfg.i18n.hlist_templatestyles}
}
end


-- hlist -> plainlist is best-effort to preserve old Common.css ordering. [hlist_note]
return plainlist_styles
return hlist_styles .. plainlist_styles
end
end


Line 348: Line 340:


return table.concat({
return table.concat({
add_list_styles(args), -- see [hlist_note] above about ordering
base_templatestyles,
base_templatestyles,
templatestyles,
templatestyles,
child_templatestyles,
child_templatestyles,
grandchild_templatestyles,
grandchild_templatestyles,
add_list_styles(args),
hiding_templatestyles,
hiding_templatestyles,
tostring(root),
tostring(root),
Line 383: Line 375:
:cssText(args.basestyle)
:cssText(args.basestyle)
:cssText(args.listtitlestyle)
:cssText(args.listtitlestyle)
:cssText('color: var(--color-base)')
:cssText(args['list' .. num .. 'titlestyle'])
:cssText(args['list' .. num .. 'titlestyle'])
:node(title)
:node(title)
Please note that all contributions to OrangDev Labs Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OrangDev Labs Wiki:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template

Template used on this page: