More actions
m 1 revision imported |
No edit summary |
||
Line 1: | Line 1: | ||
/* The "return to Main page" link on [[Special:MovePage]] after | /* The "return to Main page" link on [[Special:MovePage]] after | ||
deleting the target page makes no sense and is in the way. */ | deleting the target page makes no sense and is in the way. */ |
Latest revision as of 11:31, 20 July 2024
/* The "return to Main page" link on [[Special:MovePage]] after
deleting the target page makes no sense and is in the way. */
.page-Special_MovePage #mw-returnto {
display: none;
}
/* Show hidden items that have class="sysop-show". */
div.sysop-show,
p.sysop-show {
display: block !important;
}
span.sysop-show,
small.sysop-show {
display: inline !important;
}
table.sysop-show {
display: table !important;
}
li.sysop-show {
display: list-item !important;
}
/* Avoid accidental delete's and move's */
.page-Main_Page #ca-delete,
.page-Main_Page #ca-move {
display: none !important;
}