Template:Restoration and MediaWiki:Common.css: Difference between pages

From Hazeron Wiki
(Difference between pages)
Jump to navigation Jump to search
(category)
 
(Commented out, feel free to uncomment if you need the functionality)
 
Line 1: Line 1:
<center>
/* CSS placed here will be applied to all skins */
{|style="border-style: solid; border-width: 5px; border-color:red; background-color:yellow; color:black;"
 
| style="vertical-align:middle; text-align:center;" | [[File:Imbox_deletion.png]]This page is '''very''' out of date due to the recent [https://hazeron.com/mybb/showthread.php?tid=3052 wiki data loss]. It is in the process of being restored.
/* Hides the rollback option. Not needed when we don't have large vandalism issues. */
</center>
.mw-rollback-link {
[[Category:Restoration]]
  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);
}
 
/* Hide the page header on the Main_Page */
body.page-Main_Page h1 { display: none; }
 
/* Make TabberNeue not have arrows on the list and instead wrap it */
.tabber__tabs {
    margin: 0 auto;
    flex-wrap: wrap;
}
 
/* Hide default tab indicator */
.tabber__indicator { display: none; }
 
/* Change style of selected tab */
.tabber__tab[aria-selected='true'] {
    background-color: blue;
    color: white !important;
}
 
/* Center the buttons better */
.tabber__tab { margin: 0 auto !important; }
 
/* Change the size of the button text, note that this also proportionally changes the button padding  */
/*.tabber__tab { font-size: calc(1em * 0.7); }*/

Revision as of 06:41, 27 February 2024

/* 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);
}

/* Hide the page header on the Main_Page */
body.page-Main_Page h1 { display: none; }

/* Make TabberNeue not have arrows on the list and instead wrap it */
.tabber__tabs {
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Hide default tab indicator */
.tabber__indicator { display: none; }

/* Change style of selected tab */
.tabber__tab[aria-selected='true'] {
    background-color: blue;
    color: white !important;
}

/* Center the buttons better */
.tabber__tab { margin: 0 auto !important; }

/* Change the size of the button text, note that this also proportionally changes the button padding  */
/*.tabber__tab { font-size: calc(1em * 0.7); }*/