MediaWiki:Common.css
Матеріал з apidocs
Увага: Після публікування слід очистити кеш браузера, щоб побачити зміни.
- Firefox / Safari: тримайте Shift, коли натискаєте Оновити, або натисніть Ctrl-F5 чи Ctrl-Shift-R (⌘-R на Apple Mac)
- Google Chrome: натисніть Ctrl-Shift-R (⌘-Shift-R на Apple Mac)
- Internet Explorer / Edge: тримайте Ctrl, коли натискаєте Оновити, або натисніть Ctrl-F5
- Opera: натисніть Ctrl-F5
/** Розміщений тут CSS буде застосовуватися до всіх тем оформлення */
/* Hide search form in the sidebar */
#p-search {
display: none !important;
}
/* Hide the search box in the Vector skin top-right */
#searchform {
display: none !important;
}
/* Make the page content and TOC a side-by-side layout */
.mw-body-content {
display: flex;
flex-direction: row; /* TOC left, article content right */
align-items: flex-start;
}
/* TOC container on the left */
#tweekiTOC {
order: 0; /* ensure it comes first */
width: 220px; /* fixed TOC width */
margin-right: 20px; /* spacing between TOC and content */
position: sticky; /* stay visible when scrolling */
top: 10px;
}
/* Article content to the right of TOC */
.mw-body-content > .mw-parser-output {
flex: 1; /* take remaining space */
}