MediaWiki talk:Common.css: Difference between revisions

From WikiIndex
Jump to navigation Jump to search
(add)
(add)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
; CSS to be added
; CSS to be added, should work for all skins
<pre>
<pre>
/** Semantic MediaWiki
/** Semantic MediaWiki
Line 6: Line 6:
.smw-tabs label.nav-label.smw-tab-right {
.smw-tabs label.nav-label.smw-tab-right {
float: left;
float: left;
}
/** Semantic MediaWiki
* Add some padding between the tab bar and the area below it
*/
.smw-tabs.smw-property.clearfix section#tab-content-smw-property-spec {
padding-top: 15px;
}
}


Line 23: Line 16:
}
}
</pre>
</pre>
: Added now. --[[User:Kghbln|&#91;&#91;kgh&#93;&#93;]] ([[User talk:Kghbln|talk]]) 15:19, 31 January 2025 (UTC)
; CSS to be added should be tested if it works for other skins apart from Monobook (only tested), otherwise add to MediaWiki:Monobook.css
<pre>
/** Semantic MediaWiki
* Add some padding between the tab bar and the area below it
*/
.smw-tabs.smw-property.clearfix section#tab-content-smw-property-spec {
padding-top: 15px;
}
</pre>
: Added now. Works for all installed skins. --[[User:Kghbln|&#91;&#91;kgh&#93;&#93;]] ([[User talk:Kghbln|talk]]) 15:19, 31 January 2025 (UTC)

Latest revision as of 15:19, 31 January 2025

CSS to be added, should work for all skins
/** Semantic MediaWiki
 * Change the location of the tab on property pages
 */
.smw-tabs label.nav-label.smw-tab-right {
	float: left;
}

/** Semantic MediaWiki
 * Make the special properties more visible on Special:Browse
 */
.smwbuiltin a,
.smwbuiltin a.new {
	color: #ff8000;
}
Added now. --[[kgh]] (talk) 15:19, 31 January 2025 (UTC)
CSS to be added should be tested if it works for other skins apart from Monobook (only tested), otherwise add to MediaWiki
Monobook.css
/** Semantic MediaWiki
 * Add some padding between the tab bar and the area below it
 */
.smw-tabs.smw-property.clearfix section#tab-content-smw-property-spec {
	padding-top: 15px;
}
Added now. Works for all installed skins. --[[kgh]] (talk) 15:19, 31 January 2025 (UTC)