MediaWiki talk:Common.css: Difference between revisions

From Dolphin Emulator Wiki
Jump to navigation Jump to search
Line 12: Line 12:
[[User:Lucario|Lucario]] ([[User talk:Lucario|talk]]) 02:06, 17 January 2022 (CET)
[[User:Lucario|Lucario]] ([[User talk:Lucario|talk]]) 02:06, 17 January 2022 (CET)


: Tested this by injecting the CSS on the browser and it seems to work only when the browser tab is not maximized. I'm investigating the possibility of making the subsections collapsible without needing server-side changes. MediaWiki documentation has a bowser-side code snippet for this but it only works with the old MonoBook skin (we use Vector skin here). - [[User:mbc07|mbc07]] ([[User talk:mbc07|talk]]) 01:11, 1 February 2022 (CET)
: Tested this by injecting the CSS on the browser and it seems to work only when the browser tab is not maximized. I'm investigating the possibility of making the subsections collapsible without needing server-side changes. MediaWiki documentation has a browser-side code snippet for this but it only works with the old MonoBook skin (we use Vector skin here). - [[User:mbc07|mbc07]] ([[User talk:mbc07|talk]]) 01:11, 1 February 2022 (CET)

Revision as of 02:34, 1 February 2022

Sidebar cutoff

MediaWiki:Sidebar list grew and appears cut off in browsers in decently sized window, couldn't be scrolled to reveal below.

This might be evil code

@media screen and (min-height: 850px) {
	#mw-panel{
		position:fixed !important;
	}
}

Lucario (talk) 02:06, 17 January 2022 (CET)

Tested this by injecting the CSS on the browser and it seems to work only when the browser tab is not maximized. I'm investigating the possibility of making the subsections collapsible without needing server-side changes. MediaWiki documentation has a browser-side code snippet for this but it only works with the old MonoBook skin (we use Vector skin here). - mbc07 (talk) 01:11, 1 February 2022 (CET)