|
|
(Не показані 4 проміжні версії цього користувача) |
Рядок 8: |
Рядок 8: |
| #searchform { | | #searchform { |
| display: none !important; | | 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 */
| |
| } | | } |
/** Розміщений тут 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;
}