Last edited 8 hours ago
by Redaktion

Known issues

Revision as of 10:13, 14 May 2025 by Redaktion (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Line breaks in table cells are removed   v4.4+

Description: If the text in the first line of a cell is formatted before a line break (e.g. bold, italic), the line break will be removed when saving.


Help: The line break can be inserted manually by using the menu item Insert > More > Line break.

Unforeseen problems with numbering   v4.5+

Description: BlueSpice 4.5 introduces the configuration "NumberHeadings". If this setting is activated, the section headings of a wiki page show the numbering from the table of contents. If the wiki already has some custom numbering (for example in MediaWiki:Common.css), a duplication can occur.


Help: Either deactivate the settings for "NumberHeadings" in the config manager or remove your customization. If you use the Startpage templates for portal pages, update the page Startpage/styles.css via the page Special:Content_provisioning.

Styles that are defined in templates or in MediaWiki:Common.css might no longer be applied   v4.3+

Description: Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly.


Help: * Affected Styles in MediaWiki:Common.css:
The styles in question need to be prepended with the selector#mw-content-text.
Before:
.myclass h2 {font-size:1.2em;}
After:
#mw-content-text .myclass h2 {font-size:1.2em;}
  • TemplateStyles:
    Templates that rely on the extensionTemplateStyles need to add a wrapper container with its own ID around the affected content. This ID needs to be prepended to the existing selector. The selector #mw-content-text will not work in that case.
    Example:
    .myclass h2 {font-size:1.2em;}
    
    Add the id that you have applied to your new or existing wrapper:
    #myID .myclass h2 {font-size:1.2em;}
    



To submit feedback about this documentation, visit our community forum.