MediaWiki:Gadget-NavboxStyle.css: Difference between revisions
From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(16 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Navbox | /* Navbox template CSS */ | ||
/* Site styles */ | /* Site styles */ | ||
table.navbox { | table.navbox { /* navbox container style */ | ||
width: 100%; | |||
color: #000; | |||
font-size: 88%; | |||
text-align: center; | |||
border: 1px solid #aaa; | border: 1px solid #aaa; | ||
padding: 1px; | |||
margin: auto; | margin: auto; | ||
clear: both; | clear: both; | ||
} | } | ||
table.navbox + table.navbox { | table.navbox + table.navbox, | ||
margin-top: -1px; /* single pixel border between adjacent navboxes | .content-table-wrapper + .content-table-wrapper .navbox { | ||
margin-top: -1px !important; /* single pixel border between adjacent navboxes */ | |||
} | } | ||
.navbox- | .navbox-abovebelow, | ||
.navbox-title, table.navbox th { /* title and above/below styles */ | |||
text-align: center; | |||
padding-left: 1em; | padding-left: 1em; | ||
padding-right: 1em; | padding-right: 1em; | ||
} | } | ||
.navbox-group { | .navbox-group { /* group style */ | ||
text-align: right; | text-align: right; | ||
font-weight: bold; | font-weight: bold; | ||
white-space: nowrap; | |||
padding-left: 1em; | padding-left: 1em; | ||
padding-right: 1em; | padding-right: 1em; | ||
} | } | ||
.navbox, .navbox-subgroup { | .navbox, .navbox-subgroup { | ||
background: #fdfdfd; /* Background color */ | background: #fdfdfd; /* Background color */ | ||
} | } | ||
.navbox-list { | .navbox-list { | ||
Line 84: | Line 36: | ||
} | } | ||
.navbox-title, table.navbox th { | .navbox-title, table.navbox th { | ||
background: #ccccff; /* Level 1 color */ | background: #ccccff; /* Level 1 color */ | ||
} | } | ||
.navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { | .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { | ||
background: #ddddff; /* Level 2 color */ | background: #ddddff; /* Level 2 color */ | ||
} | } | ||
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow { | .navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow { | ||
background: #e6e6ff; /* Level 3 color */ | background: #e6e6ff; /* Level 3 color */ | ||
} | } | ||
.navbox-even { | .navbox-even { | ||
background: #f7f7f7; /* Even row striping */ | background: #f7f7f7; /* Even row striping */ | ||
} | } | ||
.navbox-odd { | .navbox-odd { | ||
background: transparent; /* Odd row striping */ | background: transparent; /* Odd row striping */ | ||
} | |||
.client-nojs .navspace { | |||
display: none; | |||
} | } | ||
@media print { | @media print { | ||
Line 104: | Line 59: | ||
} | } | ||
/* | /* Moveset and special moves boxes */ | ||
. | .moveset-nav, .special-moves .wikitable { | ||
color: #000; | |||
. | |||
} | } | ||
/* | /* MediaWiki collapsible buttons */ | ||
. | .mw-collapsible-toggle { | ||
font-weight: normal; | |||
} | } |
Latest revision as of 06:53, August 5, 2023
/* Navbox template CSS */
/* Site styles */
table.navbox { /* navbox container style */
width: 100%;
color: #000;
font-size: 88%;
text-align: center;
border: 1px solid #aaa;
padding: 1px;
margin: auto;
clear: both;
}
table.navbox + table.navbox,
.content-table-wrapper + .content-table-wrapper .navbox {
margin-top: -1px !important; /* single pixel border between adjacent navboxes */
}
.navbox-abovebelow,
.navbox-title, table.navbox th { /* title and above/below styles */
text-align: center;
padding-left: 1em;
padding-right: 1em;
}
.navbox-group { /* group style */
text-align: right;
font-weight: bold;
white-space: nowrap;
padding-left: 1em;
padding-right: 1em;
}
.navbox, .navbox-subgroup {
background: #fdfdfd; /* Background color */
}
.navbox-list {
border-left: 2px solid #fdfdfd; /* Must match background color */
}
.navbox-title, table.navbox th {
background: #ccccff; /* Level 1 color */
}
.navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title {
background: #ddddff; /* Level 2 color */
}
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
background: #e6e6ff; /* Level 3 color */
}
.navbox-even {
background: #f7f7f7; /* Even row striping */
}
.navbox-odd {
background: transparent; /* Odd row striping */
}
.client-nojs .navspace {
display: none;
}
@media print {
.navbox {
display: none;
}
}
/* Moveset and special moves boxes */
.moveset-nav, .special-moves .wikitable {
color: #000;
}
/* MediaWiki collapsible buttons */
.mw-collapsible-toggle {
font-weight: normal;
}