MediaWiki:Common.css: Difference between revisions

Do not fix sidebar position (even if it can fit entirely on screen) as was causing scrolling issues in certain scenarios. Also remove padding below the logo so a bit more content can be displayed at once
No edit summary
(Do not fix sidebar position (even if it can fit entirely on screen) as was causing scrolling issues in certain scenarios. Also remove padding below the logo so a bit more content can be displayed at once)
 
(3 intermediate revisions by 2 users not shown)
Line 225: Line 225:
.hlist dd:after,
.hlist dd:after,
.hlist li:after {
.hlist li:after {
     content: " ·\0020";
     content: " ·\00a0";
     font-weight: bold;
     font-weight: bold;
    white-space: pre;
}
}
.hlist dd:last-child:after,
.hlist dd:last-child:after,
Line 1,145: Line 1,146:
}
}


/*Keep navigation on screen, if there is room to display it without scrolling*/
/* Remove padding between logo and sidebar content */
/*This doesn't work well on Mobile Firefox, where it causes the menu text to overlap content when horizontal scrolling occurs.*/
#mw-panel {
@media screen and (min-height: 850px) {
padding-top: 0 !important;
#mw-panel{
position:fixed !important;
}
}
}