Jump to content

Module:Infobox/styles.css: Difference between revisions

From SchoolIdolWiki
Undo revision 1014 by AyTaco (talk)
Tag: Undo
No edit summary
 
(50 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* {{pp|small=y}} */
/* Infobox base styles */
/*
.infobox {
* This TemplateStyles sheet deliberately does NOT include the full set of
border: 1px solid #a2a9b1;
* infobox styles. We are still working to migrate all of the manual
color: black;
* infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]]
padding: 0.2em;
* DO NOT ADD THEM HERE
font-size: 88%;
*/
line-height: 1.7em;
/*
border-spacing: 3px;
* not strictly certain these styles are necessary since the modules now
border-radius: 8px;
* exclusively output infobox-subbox or infobox, not both
}
* just replicating the module faithfully
 
*/
@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;
}
}


.infobox-title {
.infobox-header {
line-height: 2.1em;
font-size: 100%;
border-radius: 5px;
/* DO NOT set background-color here to preserve module-defined color */
}
 
.infobox-label,
.infobox-above {
line-height: 2.1em;
background-color: #f2f2f2;
border-radius: 5px;
}
 
.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-above,
.infobox .infobox-title,
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
padding: 0.2em;
padding: 0.2em;
width: auto;
min-width: 100%;
}
}


.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
.infobox .infobox-navbar {
text-align: right;
}
/* Subbox and layout helpers */
.infobox-subbox {
.infobox-subbox {
padding: 0;
padding: 0;
Line 38: Line 113:
}
}


/* Dark theme: [[William_Wragg]], [[Coral_Castle]] */
/* Mobile-specific adjustments */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-subheader,
body.skin-minerva .infobox-above,
body.skin-minerva .infobox-title,
body.skin-minerva .infobox-image,
body.skin-minerva .infobox-full-data,
body.skin-minerva .infobox-below {
text-align: center;
}


/* Dark theme overrides - night mode (clientpref-night) */
@media screen {
@media screen {
    html.skin-theme-clientpref-night .infobox-full-data:not(.notheme) > div:not(.notheme)[style] {
html.skin-theme-clientpref-night .infobox {
    background: #1f1f23 !important;
background-color: #101418 !important;
      /* switch with var( --color-base ) when supported. */
color: #f8f9fa !important;
      color: #f8f9fa;
border-color: #444 !important;
}
 
html.skin-theme-clientpref-night .infobox .infobox-label,
html.skin-theme-clientpref-night .infobox .infobox-subheader {
background-color: #2a2a2a !important;
color: #ffffff !important;
}
 
html.skin-theme-clientpref-night .infobox td,
html.skin-theme-clientpref-night .infobox th {
color: #f0f0f0 !important;
}
 
html.skin-theme-clientpref-night .infobox .infobox-header,
html.skin-theme-clientpref-night .infobox .infobox-title {
color: #ffffff !important;
/* Do not override background-color to preserve custom/module header colors */
}
}
}
}


/* Dark theme overrides - auto dark mode (prefers-color-scheme: dark) */
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .infobox {
background-color: #101418 !important;
color: #f8f9fa !important;
border-color: #444 !important;
}
html.skin-theme-clientpref-os .infobox .infobox-label,
html.skin-theme-clientpref-os .infobox .infobox-subheader {
background-color: #2a2a2a !important;
color: #ffffff !important;
}
html.skin-theme-clientpref-os .infobox td,
html.skin-theme-clientpref-os .infobox th {
color: #f0f0f0 !important;
}


@media screen and ( prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .infobox .infobox-header,
    html.skin-theme-clientpref-os .infobox-full-data:not(.notheme) div:not(.notheme) {
html.skin-theme-clientpref-os .infobox .infobox-title {
      background: #1f1f23 !important;
color: #ffffff !important;
      /* switch with var( --color-base ) when supported. */
/* Preserve bright custom headers like Aqours */
      color: #f8f9fa;
}
    }
}
}


 
/* Responsive table fix for Module:Infobox3cols */
/* Since infobox is a table, many infobox templates take advantage of this to add columns and rows to the infobox itself rather than as part of a new table inside them. This class should be discouraged and removed on the long term, but allows us to at least identify these tables going forward
Currently in use on: [[Module:Infobox3cols]]
Fixes issue described in https://phabricator.wikimedia.org/F55300125 on Vector 2022.
*/
@media (min-width: 640px) {
@media (min-width: 640px) {
  body.skin--responsive .infobox-table {
body.skin--responsive .infobox-table {
    display: table !important;
display: table !important;
  }
}
  body.skin--responsive .infobox-table > caption {
body.skin--responsive .infobox-table > caption {
    display: table-caption !important;
display: table-caption !important;
  }
}
  body.skin--responsive .infobox-table > tbody {
body.skin--responsive .infobox-table > tbody {
    display: table-row-group;
display: table-row-group;
  }
}
  body.skin--responsive .infobox-table tr {
body.skin--responsive .infobox-table tr {
    display: table-row !important;
display: table-row !important;
  }
}
  body.skin--responsive .infobox-table th,
body.skin--responsive .infobox-table th,
  body.skin--responsive .infobox-table td {
body.skin--responsive .infobox-table td {
    padding-left: inherit;
padding-left: inherit;
    padding-right: inherit;
padding-right: inherit;
  }
}
}
}

Latest revision as of 11:56, 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;
	}
}

.infobox-header {
	line-height: 2.1em;
	font-size: 100%;
	border-radius: 5px;
	/* DO NOT set background-color here to preserve module-defined color */
}

.infobox-label,
.infobox-above {
	line-height: 2.1em;
	background-color: #f2f2f2;
	border-radius: 5px;
}

.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-above,
.infobox .infobox-title,
.infobox caption {
	font-size: 125%;
	font-weight: bold;
	text-align: center;
	padding: 0.2em;
}

.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
	text-align: center;
}

.infobox .infobox-navbar {
	text-align: right;
}

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

.infobox .navbar {
	font-size: 100%;
}

/* Mobile-specific adjustments */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-subheader,
body.skin-minerva .infobox-above,
body.skin-minerva .infobox-title,
body.skin-minerva .infobox-image,
body.skin-minerva .infobox-full-data,
body.skin-minerva .infobox-below {
	text-align: center;
}

/* Dark theme overrides - night mode (clientpref-night) */
@media screen {
	html.skin-theme-clientpref-night .infobox {
		background-color: #101418 !important;
		color: #f8f9fa !important;
		border-color: #444 !important;
	}

	html.skin-theme-clientpref-night .infobox .infobox-label,
	html.skin-theme-clientpref-night .infobox .infobox-subheader {
		background-color: #2a2a2a !important;
		color: #ffffff !important;
	}

	html.skin-theme-clientpref-night .infobox td,
	html.skin-theme-clientpref-night .infobox th {
		color: #f0f0f0 !important;
	}

	html.skin-theme-clientpref-night .infobox .infobox-header,
	html.skin-theme-clientpref-night .infobox .infobox-title {
		color: #ffffff !important;
		/* Do not override background-color to preserve custom/module header colors */
	}
}

/* Dark theme overrides - auto dark mode (prefers-color-scheme: dark) */
@media (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .infobox {
		background-color: #101418 !important;
		color: #f8f9fa !important;
		border-color: #444 !important;
	}

	html.skin-theme-clientpref-os .infobox .infobox-label,
	html.skin-theme-clientpref-os .infobox .infobox-subheader {
		background-color: #2a2a2a !important;
		color: #ffffff !important;
	}

	html.skin-theme-clientpref-os .infobox td,
	html.skin-theme-clientpref-os .infobox th {
		color: #f0f0f0 !important;
	}

	html.skin-theme-clientpref-os .infobox .infobox-header,
	html.skin-theme-clientpref-os .infobox .infobox-title {
		color: #ffffff !important;
		/* Preserve bright custom headers like Aqours */
	}
}

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