Шаблон:SlideMenu: различия между версиями
Материал из Space Station 14 Вики
|
|
Строка 18: |
Строка 18: |
| }} | | }} |
| | <!-- Если параметр не задан --> | | | <!-- Если параметр не задан --> |
| <div>
| | <div class="page z_index_position"> |
| <h1>По умолчанию</h1> | | <div class="container mw-collapsible mw-collapsed"> |
| <p>Этот код отображается, если параметр mode не задан.</p> | | <div class="title"><span class="title--text">{{{title}}}</span></div> |
| </div>
| | <div class="content mw-collapsible-content">{{{content}}}</div> |
| | </div></div> |
| }} | | }} |
|
| |
|
Версия от 14:09, 20 июля 2024
{{{title}}}
{{{content}}}
.page {
position: relative; /* sticky */
/* max-height:4.5em; */
text-align: left;
}
.container {
top: 0;
left: 0;
right: 0;
padding: 12px;
border-radius: 0.55em;
background: #27272e;
border: 2px solid black;
}
.title {
font-weight: 500;
font-size: 1em;
color: lightgrey;
}
.title--text {
white-space: nowrap;
}
.content {
/* Пусто */
}
@media (max-width:850px) {
.page {
position: relative;
max-height: none;
}
}
/* При активации чекбокса с классом open-all-menus */
/* Скрытие кнопки "развернуть" */
.toggle-checked .mw-collapsible.mw-collapsed .mw-collapsible-toggle-default {
display: none !important;
}
/* Скрытие названия */
.toggle-checked .mw-collapsible.mw-collapsed > div:nth-child(2) {
display: none !important;
}
/* Показывать содержимое */
.toggle-checked .mw-collapsible .mw-collapsible-content {
display: block !important;
}
.toggle-checked {
position: relative !important;
max-height: none !important;
}
.toggle-checked-padding {
padding: 7px !important;
margin: 2px !important;
}