MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
} | } | ||
.mw-collapsible-toggle { | /* Recommended styles for collapsible toggle */ | ||
.mw-collapsible span.mw-collapsible-toggle { | |||
float: left; /* Moves the toggle link to the left */ | |||
margin-left: 0; /* Removes left margin */ | |||
margin-right: 1em; /* Adds right margin for spacing */ | |||
} | } | ||
Revision as of 20:05, 31 August 2024
/* Styles for collapsible sections */
.collapsible-section {
margin-bottom: 15px;
border: 1px solid #ccc;
padding: 5px;
width: 90%;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
background-color: #f9f9f9;
}
.collapsible-header {
font-weight: bold;
cursor: pointer;
text-align: left; /* Ensures the header text is aligned to the left */
padding: 10px; /* Adds padding for better spacing */
background-color: #e0e0e0;
border-radius: 3px;
display: block; /* Ensures the entire header is treated as a block */
}
/* Recommended styles for collapsible toggle */
.mw-collapsible span.mw-collapsible-toggle {
float: left; /* Moves the toggle link to the left */
margin-left: 0; /* Removes left margin */
margin-right: 1em; /* Adds right margin for spacing */
}
.mw-collapsible-content {
margin-top: 10px;
}
.mw-collapsible.mw-collapsed .mw-collapsible-content {
display: none;
}