MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide the 'Editor tools' and 'Tools' in the left-side toolbar */ | |||
#p-tb { | #p-tb { | ||
display: none; | display: none; | ||
Line 6: | Line 7: | ||
display: none; | display: none; | ||
} | } | ||
/* Reduce the header at the top, which moves the search box into the page content */ | |||
#mw-head-base { | #mw-head-base { | ||
height: 2em; | height: 2em; | ||
} | } | ||
/* The left-side toolbar stays fixed in view */ | |||
#mw-panel { | #mw-panel { | ||
position: fixed; | position: fixed; | ||
} | } | ||
/* Raditeq-style purple colors */ | |||
.mw-body { | .mw-body { | ||
border: 1px solid #902082 | border: 1px solid #902082 | ||
Line 19: | Line 22: | ||
border-bottom: 1px solid #902082 | border-bottom: 1px solid #902082 | ||
} | } | ||
/* No icons in the footer */ | |||
#footer-icons { | #footer-icons { | ||
display: none; | display: none; | ||
} | } |
Revision as of 21:09, 27 September 2024
/* CSS placed here will be applied to all skins */ /* Hide the 'Editor tools' and 'Tools' in the left-side toolbar */ #p-tb { display: none; } #p-Editor_tools { display: none; } /* Reduce the header at the top, which moves the search box into the page content */ #mw-head-base { height: 2em; } /* The left-side toolbar stays fixed in view */ #mw-panel { position: fixed; } /* Raditeq-style purple colors */ .mw-body { border: 1px solid #902082 } h1, h2 { border-bottom: 1px solid #902082 } /* No icons in the footer */ #footer-icons { display: none; }