MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Changed section-collapse icon color.) |
(Ups.) |
||
| Line 8: | Line 8: | ||
/* Implements section-collapse and stop-section-collapse */ | /* Implements section-collapse and stop-section-collapse */ | ||
.section-collapse { | .section-collapse { | ||
border-color: # | border-color: #000000; | ||
border-style: solid; | border-style: solid; | ||
border-width: 2px 2px 0 0; | border-width: 2px 2px 0 0; | ||
Revision as of 09:19, 7 April 2019
/* CSS placed here will be applied to all skins */
/* Hides the rollback option. Not needed when we don't have large vandalism issues. */
.mw-rollback-link {
display: none;
}
/* Implements section-collapse and stop-section-collapse */
.section-collapse {
border-color: #000000;
border-style: solid;
border-width: 2px 2px 0 0;
content: "";
cursor: pointer;
display: inline-block;
height: 7px;
margin-right: 5px;
position: relative;
right: 0;
top: 5px;
transform: rotate(-45deg);
vertical-align: middle;
width: 7px;
}
.section-collapsed {
display: none;
}
.collapsed-icon {
margin-top: 1px;
transform: rotate(135deg);
}