Module:Infobox/styles.css: Difference between revisions
Appearance
No edit summary Tag: Manual revert |
No edit summary Tag: Reverted |
||
| Line 20: | Line 20: | ||
width: 100%; | width: 100%; | ||
} | } | ||
.infobox .nowrap { | .infobox .nowrap { | ||
white-space: normal; | white-space: normal; | ||
| Line 35: | Line 34: | ||
} | } | ||
.infobox-header { | /* Header & Title */ | ||
.infobox-header, | |||
.infobox-title { | |||
line-height: 2.1em; | line-height: 2.1em; | ||
font-size: 100%; | font-size: 100%; | ||
border-radius: 5px; | border-radius: 5px; | ||
/* | font-weight: bold; | ||
text-align: center; | |||
color: black; | |||
/* Do not set background-color to preserve module-defined or inline-set color */ | |||
} | } | ||
| Line 49: | Line 53: | ||
} | } | ||
.infobox .infobox-above, | |||
.infobox caption { | |||
font-size: 125%; | |||
font-weight: bold; | |||
text-align: center; | |||
padding: 0.2em; | |||
} | |||
/* General infobox content layout */ | |||
.infobox-full-data, | .infobox-full-data, | ||
.infobox-data, | .infobox-data, | ||
| Line 71: | Line 84: | ||
} | } | ||
.infobox .infobox-subheader, | .infobox .infobox-subheader, | ||
.infobox .infobox-image, | .infobox .infobox-image, | ||
| Line 90: | Line 93: | ||
.infobox .infobox-navbar { | .infobox .infobox-navbar { | ||
text-align: right; | text-align: right; | ||
} | |||
.infobox .navbar { | |||
font-size: 100%; | |||
} | } | ||
| Line 107: | Line 114: | ||
.infobox-3cols-child { | .infobox-3cols-child { | ||
margin: auto; | margin: auto; | ||
} | } | ||
/* Mobile-specific adjustments */ | /* Mobile-specific adjustments */ | ||
body.skin-minerva .infobox-header, | body.skin-minerva .infobox-header, | ||
body.skin-minerva .infobox-title, | |||
body.skin-minerva .infobox-subheader, | body.skin-minerva .infobox-subheader, | ||
body.skin-minerva .infobox-above, | body.skin-minerva .infobox-above, | ||
body.skin-minerva .infobox-image, | body.skin-minerva .infobox-image, | ||
body.skin-minerva .infobox-full-data, | body.skin-minerva .infobox-full-data, | ||
| Line 124: | Line 127: | ||
} | } | ||
/* Dark theme overrides - night mode | /* Dark theme overrides - night mode */ | ||
@media screen { | @media screen { | ||
html.skin-theme-clientpref-night .infobox { | html.skin-theme-clientpref-night .infobox { | ||
| Line 137: | Line 140: | ||
background-color: #2a2a2a !important; | background-color: #2a2a2a !important; | ||
color: #ffffff !important; | color: #ffffff !important; | ||
} | |||
html.skin-theme-clientpref-night .infobox .infobox-header, | |||
html.skin-theme-clientpref-night .infobox .infobox-title { | |||
color: #ffffff !important; | |||
background-color: inherit !important; /* Retain inline/module header colors */ | |||
} | } | ||
| Line 142: | Line 151: | ||
html.skin-theme-clientpref-night .infobox th { | html.skin-theme-clientpref-night .infobox th { | ||
color: #f0f0f0 !important; | color: #f0f0f0 !important; | ||
} | } | ||
} | } | ||
/* Dark theme overrides - auto dark mode | /* Dark theme overrides - auto dark mode */ | ||
@media (prefers-color-scheme: dark) { | @media (prefers-color-scheme: dark) { | ||
html.skin-theme-clientpref-os .infobox { | html.skin-theme-clientpref-os .infobox { | ||
| Line 164: | Line 167: | ||
background-color: #2a2a2a !important; | background-color: #2a2a2a !important; | ||
color: #ffffff !important; | color: #ffffff !important; | ||
} | |||
html.skin-theme-clientpref-os .infobox .infobox-header, | |||
html.skin-theme-clientpref-os .infobox .infobox-title { | |||
color: #ffffff !important; | |||
background-color: inherit !important; | |||
} | } | ||
| Line 169: | Line 178: | ||
html.skin-theme-clientpref-os .infobox th { | html.skin-theme-clientpref-os .infobox th { | ||
color: #f0f0f0 !important; | color: #f0f0f0 !important; | ||
} | } | ||
} | } | ||
/* Responsive | /* Responsive fix for Module:Infobox3cols */ | ||
@media (min-width: 640px) { | @media (min-width: 640px) { | ||
body.skin--responsive .infobox-table { | body.skin--responsive .infobox-table { | ||
Revision as of 11:22, 14 April 2025
/* Infobox base styles */
.infobox {
border: 1px solid #a2a9b1;
color: black;
padding: 0.2em;
font-size: 88%;
line-height: 1.7em;
border-spacing: 3px;
border-radius: 8px;
}
@media screen {
.infobox {
background-color: #f8f9fa;
}
}
@media (max-width: 640px) {
.infobox {
width: 100%;
}
.infobox .nowrap {
white-space: normal;
}
}
@media (min-width: 640px) {
.infobox {
margin: 0.5em 0 0.5em 1em;
float: right;
clear: right;
width: 22em;
}
}
/* Header & Title */
.infobox-header,
.infobox-title {
line-height: 2.1em;
font-size: 100%;
border-radius: 5px;
font-weight: bold;
text-align: center;
color: black;
/* Do not set background-color to preserve module-defined or inline-set color */
}
.infobox-label,
.infobox-above {
line-height: 2.1em;
background-color: #f2f2f2;
border-radius: 5px;
}
.infobox .infobox-above,
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
padding: 0.2em;
}
/* General infobox content layout */
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
.infobox th,
.infobox td {
vertical-align: top;
}
.infobox-label,
.infobox-data,
.infobox th {
text-align: center;
}
.infobox td {
text-align: left;
letter-spacing: 0.2px;
}
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
.infobox .infobox-navbar {
text-align: right;
}
.infobox .navbar {
font-size: 100%;
}
/* Subbox and layout helpers */
.infobox-subbox {
padding: 0;
border: none;
margin: -3px;
width: auto;
min-width: 100%;
font-size: 100%;
clear: none;
float: none;
background-color: transparent;
}
.infobox-3cols-child {
margin: auto;
}
/* Mobile-specific adjustments */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-title,
body.skin-minerva .infobox-subheader,
body.skin-minerva .infobox-above,
body.skin-minerva .infobox-image,
body.skin-minerva .infobox-full-data,
body.skin-minerva .infobox-below {
text-align: center;
}
/* Dark theme overrides - night mode */
@media screen {
html.skin-theme-clientpref-night .infobox {
background-color: #1e1e1e !important;
color: #f8f9fa !important;
border-color: #444 !important;
}
html.skin-theme-clientpref-night .infobox .infobox-label,
html.skin-theme-clientpref-night .infobox .infobox-above,
html.skin-theme-clientpref-night .infobox .infobox-subheader {
background-color: #2a2a2a !important;
color: #ffffff !important;
}
html.skin-theme-clientpref-night .infobox .infobox-header,
html.skin-theme-clientpref-night .infobox .infobox-title {
color: #ffffff !important;
background-color: inherit !important; /* Retain inline/module header colors */
}
html.skin-theme-clientpref-night .infobox td,
html.skin-theme-clientpref-night .infobox th {
color: #f0f0f0 !important;
}
}
/* Dark theme overrides - auto dark mode */
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .infobox {
background-color: #1e1e1e !important;
color: #f8f9fa !important;
border-color: #444 !important;
}
html.skin-theme-clientpref-os .infobox .infobox-label,
html.skin-theme-clientpref-os .infobox .infobox-above,
html.skin-theme-clientpref-os .infobox .infobox-subheader {
background-color: #2a2a2a !important;
color: #ffffff !important;
}
html.skin-theme-clientpref-os .infobox .infobox-header,
html.skin-theme-clientpref-os .infobox .infobox-title {
color: #ffffff !important;
background-color: inherit !important;
}
html.skin-theme-clientpref-os .infobox td,
html.skin-theme-clientpref-os .infobox th {
color: #f0f0f0 !important;
}
}
/* Responsive fix for Module:Infobox3cols */
@media (min-width: 640px) {
body.skin--responsive .infobox-table {
display: table !important;
}
body.skin--responsive .infobox-table > caption {
display: table-caption !important;
}
body.skin--responsive .infobox-table > tbody {
display: table-row-group;
}
body.skin--responsive .infobox-table tr {
display: table-row !important;
}
body.skin--responsive .infobox-table th,
body.skin--responsive .infobox-table td {
padding-left: inherit;
padding-right: inherit;
}
}