Last edited one day ago
by Redaktion

Known issues: Difference between revisions

Redaktion (talk | contribs)
No edit summary
Tag: 2017 source edit
Redaktion (talk | contribs)
No edit summary
 
(38 intermediate revisions by the same user not shown)
Line 1: Line 1:
<templatestyles src="Collapsible/styles.css" />
{{CollapsibleWrapper
<div id="collapse">
|CollapsibleItems={{Collapsible
== BlueSpice 4.3 ==
|cheader=Line breaks in table cells are removed
{{Collapsible|cheader=BlueSpicePrivacy banner for admin users
|bsvFrom=4.4
|cdescription= Admin users might see a yellow banner indicating that some privacy pages need to be created even if they have been created for the footer links of the wiki.
|cdescription=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.
|chelp=}}
|chelp=The line break can be inserted manually by using the menu item <code>Insert > More > Line break</code>.
{{Collapsible|cheader=Missing language switcher on pages where the title area is hidden.
}}{{Collapsible
|cdescription= Since the language switcher is now located in the title area of wiki pages, pages that use the option __HIDETITLE__ currently cannot show the language switcher.  
|cheader=Unforeseen problems with numbering
|chelp=}}
|bsvFrom=4.5
{{Collapsible|cheader=Styles that are defined in templates or in MediaWiki:Common.css might no longer be applied.
|cdescription=BlueSpice 4.5 introduces the configuration "[[Manual:Extension/BlueSpiceConfigManager#NumberHeadings v4.5.2B{{!}}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.
|cdescription= Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly.
|chelp=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''.
|chelp=In MediaWiki:Common.css, the styles in question need to be prepended with the selector <code>#mw-content-text</code>. Templates that rely on TemplateStyles need to add a wrapper container with its own ID. This ID needs to be prepended to the existing selector. The selector <code>#mw-content-text</code> will not work in that case.}}
}}{{Collapsible
{{Collapsible|cheader=Some wikis might experience styling inconsistencies for the newly added startpage templates.
|cheader=Styles that are defined in templates or in ''MediaWiki:Common.css'' might no longer be applied
|cdescription= If a wiki is already using some templates that are included in the new startpage templates (e.g. Image cards), these templates are not overwritten during the upgrade to BlueSpice 4.3.
|bsvFrom=4.3
|chelp=Any styling issues of these templates need to be adjusted manually.}}
|cdescription=Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly.
== BlueSpice 4.2 ==
|chelp=* Affected Styles in  ''MediaWiki:Common.css:'' <br />The styles in question need to be prepended with the selector<code>#mw-content-text</code>. <br />Before:<syntaxhighlight lang="css">
{{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load. {{Bsvs|bsvFrom=|bsvTo=4.2.6|bsvFeature=}}
.myclass h2 {font-size:1.2em;}
|cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading.
</syntaxhighlight>After:<syntaxhighlight lang="css">
|chelp=You can add the following script to ''MediaWiki:Common.js'':
#mw-content-text .myclass h2 {font-size:1.2em;}
<syntaxhighlight language="javascript">
</syntaxhighlight>
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
* TemplateStyles: <br />Templates that rely on the extension''TemplateStyles'' 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 <code>#mw-content-text</code> will not work in that case.<br />Example:<syntaxhighlight lang="css">
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
.myclass h2 {font-size:1.2em;}
}
</syntaxhighlight>Add the id that you have applied to your new or existing wrapper:<syntaxhighlight lang="css">
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
#myID .myclass h2 {font-size:1.2em;}
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
</syntaxhighlight>
}
}}
</syntaxhighlight>}}
}}
 
</div
[[en:{{FULLPAGENAME}}]]
[[de:Bekannte Probleme]]

Latest revision as of 10:13, 14 May 2025


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.