MediaWiki:Mobile.css: Difference between revisions

From Parallel Wiki
Jump to navigation Jump to search
No edit summary
Tags: Manual revert Reverted
No edit summary
Tag: Manual revert
 
Line 19: Line 19:
*/
*/


/* Reset user agent styles. We don't reset small or blockquote here deliberately */
/* Fix dumb default styling */
cite,
.content code,
dfn {
.content pre {
font-style: inherit;
background-color: #f9f9f9;
border: 1px solid #ddd;
color: black;
}
}


q {
.content code {
quotes: '"' '"' "'" "'";
border-radius: 2px;
}
}


/* Hide the images */
@media all and (max-width: 768px) {
.geo-nondefault, .geo-multi-punct,
.gallerybox .thumb > div {
/* Hide stuff meant for accounts with special permissions. Made visible again in
margin: 15px !important;
  [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]] and
width: auto !important;
  [[MediaWiki:Group-autoconfirmed.css]]. */
}
.checkuser-show,
}
.sysop-show,
 
.templateeditor-show,
td {
.extendedmover-show,
background-color: #FFF;
.patroller-show,
.extendedconfirmed-show,
.autoconfirmed-show,
/* Copied from Common.css - allow for hiding text in compact form e.g. clean up templates */
.hide-when-compact,
/* portal pages are badly formatted. Until this changes these should be hidden. (see https://phabricator.wikimedia.org/T86495) */
.noprint.portal {
display: none;
}
}


/*
/* Use black bullet points, instead of blue circles: [[File:List bullet.svg]] */
.infobox
.content ul {
DO NOT style infobox's here. That should be taken care of in the associated templates via template styles. Styles here will lead to flash of unstyled content on mobile.
list-style-image: url('filepath://List_bullet.svg');
*/
/* removed inline from module as we work toward Tstyles support
* Use three classes to match specificity of MobileFrontend/Minerva selectors */
.content .mw-parser-output .infobox-header,
.content .mw-parser-output .infobox-subheader,
.content .mw-parser-output .infobox-above,
.content .mw-parser-output .infobox-title,
.content .mw-parser-output .infobox-image,
.content .mw-parser-output .infobox-full-data,
.content .mw-parser-output .infobox-below {
text-align: center;
}
}


/* Unbulleted lists e.g. Barack Obama page*/
/* Fix footer hlist separator colour */
.plainlist ul {
.footer-content .hlist-separated li:after {
list-style: none;
color: #FFF;
padding-left: 0; /* Reset Minerva defaults */
}
}


/* Prevent line breaks in silly places:
/* Fix changes autocollapsing in recent changes */
  1) Where desired
.mw-changeslist-edit, .mw-changeslist-line {
  2) Links when we don't want them to
display: table-row !important;
*/
.mw-parser-output .nowrap,
.nowraplinks a {
white-space: nowrap;
}
}
.mw-parser-output .infobox .nowrap {
.mw-changeslist-line-inner {
white-space: normal !important;
padding-top: 1.5em;
}
}
/* But allow wrapping where desired: */
.mw-enhanced-rc-nested {
.wrap,
    padding-top: 0.5em;
.wraplinks a {
white-space: normal;
}
}


/* Generic class texhtml class for inline math */
/* Alternating cell background */
span.texhtml {
.alternatecells:nth-child(odd) {
font-family: serif;
background-color: #F9F9F9;
white-space: nowrap;
}
}


/* Prevent flags in tables from collapsing
/* Alternating table rows, primarily used with [[Template:Infobox row]] */
Fix for T116318
.alternaterows tr:nth-child(even),
*/
.infobox-rows tr:nth-child(even),
.flagicon img {
.alternaterows tr:nth-child(even) td,
min-width: 25px;
.infobox-rows tr:nth-child(even) td {
background-color: #F9F9F9;
}
}


/* Prevent unnecessary margin at the bottom of centralnotices */
/* Show TOC */
.cnotice {
@media (max-width: 512px) {
margin-bottom: 0 !important;
.skin-minerva .toc-mobile {
display: block;
}
}
}


/* Turn a list into a tree view style (See [[.minecraft]]) */
.treeview {
margin-top: 0.3em;
}


/* The message body cell(s), such as for {{Commonscat}}.
.treeview .treeview-header {
* this is a very small subset of the styles from Common.css
padding-left: 3px;
* just to make sure the box isn't squashed without any spacing
font-weight: bold;
* which looks out of place with visuals of other nearby elements
}
*/
.treeview .treeview-header:last-child {
.mbox-text {
border-color: #636363 !important;
/* @noflip */
border-left-style: dotted;
padding: 0.25em 0.9em;
}
.treeview .treeview-header:not(:last-child):before {
content: none;
}
.treeview .treeview-header:last-child:before {
border-bottom: 0;
}
}


/* Normal font styling for wikitable row headers with scope="row" tag */
.treeview ul,
.wikitable.plainrowheaders th[scope=row],
.treeview li {
.wikitable.plainrowheaders th[scope=rowgroup] {
margin: 0;
font-weight: normal;
padding: 0;
/* @noflip */
list-style-type: none;
text-align: left;
list-style-image: none;
}
}


.treeview li li {
position: relative;
padding-left: 13px;
margin-left: 7px;
border-left: 1px solid #636363;
}
.treeview li li:before {
content: "";
position: absolute;
top: 0;
left: -1px;
width: 11px;
height: 11px;
border-bottom: 1px solid #636363;
}


/**
.treeview li li:last-child:not(.treeview-continue) {
******************DEPRECATED STYLES ************************************
border-color: transparent;
These styles will be removed shortly. Please see inline comments.
}
**/
.treeview li li:last-child:not(.treeview-continue):before {
border-left: 1px solid #636363;
width: 10px;
}


.nbttree-inherited {
background-color: #E6E6FA;
}


/*
/* Try to use nearest neighbour scaling for pixelated images */
FIXME: DUPLICATES Template:Hlist/styles.css
.pixel-image,
Note the mobile skin provides a `hlist-separated` class for this purpose. Use this class name alongside the hlist class instead as this will result in a FOUC.
.invslot-item-image,
Should be removed and moved to templates.
.sprite {
*/
image-rendering: optimizeSpeed;
/* Counter hlist indenting of Minerva*/
image-rendering: -webkit-optimize-contrast;
.mw-parser-output .hlist ul,
image-rendering: optimize-contrast;
.mw-parser-output .hlist ol {
image-rendering: -moz-crisp-edges;
padding-left: 0;
image-rendering: -o-crisp-edges;
image-rendering: crisp-edges;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
}
}
/* reset hlist margins of Minerva
 
do not add li here (see T235416) */
/* Simulate link styling for JS only links */
.mw-parser-output .hlist dd,
.jslink {
.mw-parser-output .hlist dt {
color: #0645AD;
margin-right: 0;
-webkit-user-select: none;
  -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
}
}
/* do not add li here. Minerva provides it already*/
.jslink:hover {
.mw-parser-output .hlist dd:after {
text-decoration: underline;
content: " · ";
cursor: pointer;
font-weight: bold;
}
}
.mw-parser-output .hlist dt:after {
.jslink:active {
content: ": ";
color: #FAA700;
}
}


/* Should be removed and moved to templates once TemplateStyles is live */
/* Hatnotes and disambiguation notices */
.heading-holder .hlist li:after,
.hatnote {
.mw-parser-output .hlist dd:last-child:after,
font-style: italic;
.mw-parser-output .hlist dt:last-child:after,
.mw-parser-output .hlist li:last-child:after {
content: none;
}
}
/* Add parentheses around nested lists */
.hatnote i {
/* Should be removed and moved to templates once TemplateStyles is live */
font-style: normal;
.mw-parser-output .hlist dd dd:first-child:before,
.mw-parser-output .hlist dd dt:first-child:before,
.mw-parser-output .hlist dd li:first-child:before,
.mw-parser-output .hlist dt dd:first-child:before,
.mw-parser-output .hlist dt dt:first-child:before,
.mw-parser-output .hlist dt li:first-child:before,
.mw-parser-output .hlist li dd:first-child:before,
.mw-parser-output .hlist li dt:first-child:before,
.mw-parser-output .hlist li li:first-child:before {
content: " (";
font-weight: normal;
}
}
/* Should be removed and moved to templates once TemplateStyles is live */
div.hatnote {
.mw-parser-output .hlist dd dd:last-child:after,
padding-left: 1.6em;
.mw-parser-output .hlist dd dt:last-child:after,
margin-bottom: 0.5em;
.mw-parser-output .hlist dd li:last-child:after,
.mw-parser-output .hlist dt dd:last-child:after,
.mw-parser-output .hlist dt dt:last-child:after,
.mw-parser-output .hlist dt li:last-child:after,
.mw-parser-output .hlist li dd:last-child:after,
.mw-parser-output .hlist li dt:last-child:after,
.mw-parser-output .hlist li li:last-child:after {
content: ") " !important; /* Override hlist-separated being dumb */
font-weight: normal;
padding-left: 0;
}
}
 
div.hatnote + div.hatnote {
/* Put ordinals in front of ordered list items */
margin-top: -0.5em;
/* Should be removed and moved to templates once TemplateStyles is live */
.mw-parser-output .hlist ol {
counter-reset: listitem;
}
}


/* Should be removed and moved to templates once TemplateStyles is live */
/* Fix animated infobox images shifting the screen when images have different dimensions */
.mw-parser-output .hlist ol > li {
.content span.animated a > img,
counter-increment: listitem;
.content span.animated a > .lazy-image-placeholder,
.content noscript span.animated > img {
    max-width: initial !important;
}
}


/* Should be removed and moved to templates once TemplateStyles is live */
body.page-Main_Page #firstHeading {
.mw-parser-output .hlist ol > li:before {
    display: none;
content: " " counter(listitem) " ";
white-space: nowrap;
}
}


/* Should be removed and moved to templates once TemplateStyles is live */
/* Hide nomobile */
.mw-parser-output .hlist dd ol > li:first-child:before,
.nomobile {
.mw-parser-output .hlist dt ol > li:first-child:before,
display: none;
.mw-parser-output .hlist li ol > li:first-child:before {
content: " (" counter(listitem) " ";
}
}


/* https://phabricator.wikimedia.org/T180396#5317728 */
@media print {
.navbox,
.hatnote,
.ambox {
display: none !important;
}
}





Latest revision as of 22:28, 2 November 2023

/**
You are editing the global css file for all mobile site users.
With Great Power Comes Great Responsibility.

Some words of caution:
* Avoid any changes which impact layout on a mobile device.
** Please be careful not to introduce any margin / padding rules. These should be done inside the template itself via an inline style.
** Be especially cautious when a template is likely to be used within the top 480px of the screen (the content that the user will see first on a mobile device).
* Do not use display:none. Instead edit the template and markup the element you want to hide with the `nomobile` class.
* Try to keep rules as generic and minimal as possible. Do not have 2 selectors doing the same thing. Introduce a common class and use that instead.
* For big changes consult the [https://grafana.wikimedia.org/dashboard/db/mobile-2g grafana dashboard] to ensure you don't introduce any performance regressions.
* Group common css rules together where possible.

If you are looking for .mobile-float-reset (see [[:phab:T56176]]), use TemplateStyles instead.
.mobile-float-reset {    
	float: none !important;    
	width: 100% !important;    
}  
*/

/* Fix dumb default styling */
.content code,
.content pre {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	color: black;
}

.content code {
	border-radius: 2px;
}

@media all and (max-width: 768px) {
	.gallerybox .thumb > div {
		margin: 15px !important;
		width: auto !important;
	}
}

td {
	background-color: #FFF;
}

/* Use black bullet points, instead of blue circles: [[File:List bullet.svg]] */
.content ul {
	list-style-image: url('filepath://List_bullet.svg');
}

/* Fix footer hlist separator colour */
.footer-content .hlist-separated li:after {
	color: #FFF;
}

/* Fix changes autocollapsing in recent changes */
.mw-changeslist-edit, .mw-changeslist-line {
	display: table-row !important;
}
.mw-changeslist-line-inner {
	padding-top: 1.5em;
}
.mw-enhanced-rc-nested {
    padding-top: 0.5em;
}

/* Alternating cell background */
.alternatecells:nth-child(odd) {
	background-color: #F9F9F9;
}

/* Alternating table rows, primarily used with [[Template:Infobox row]] */
.alternaterows tr:nth-child(even),
.infobox-rows tr:nth-child(even),
.alternaterows tr:nth-child(even) td,
.infobox-rows tr:nth-child(even) td {
	background-color: #F9F9F9;
}

/* Show TOC */
@media (max-width: 512px) {
	.skin-minerva .toc-mobile {
		display: block;
	}
}

/* Turn a list into a tree view style (See [[.minecraft]]) */
.treeview {
	margin-top: 0.3em;
}

.treeview .treeview-header {
	padding-left: 3px;
	font-weight: bold;
}
.treeview .treeview-header:last-child {
	border-color: #636363 !important;
	border-left-style: dotted;
}
.treeview .treeview-header:not(:last-child):before {
	content: none;
}
.treeview .treeview-header:last-child:before {
	border-bottom: 0;
}

.treeview ul,
.treeview li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

.treeview li li {
	position: relative;
	padding-left: 13px;
	margin-left: 7px;
	border-left: 1px solid #636363;
}
.treeview li li:before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	width: 11px;
	height: 11px;
	border-bottom: 1px solid #636363;
}

.treeview li li:last-child:not(.treeview-continue) {
	border-color: transparent;
}
.treeview li li:last-child:not(.treeview-continue):before {
	border-left: 1px solid #636363;
	width: 10px;
}

.nbttree-inherited {
	background-color: #E6E6FA;
}

/* Try to use nearest neighbour scaling for pixelated images */
.pixel-image,
.invslot-item-image,
.sprite {
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}

/* Simulate link styling for JS only links */
.jslink {
	color: #0645AD;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.jslink:hover {
	text-decoration: underline;
	cursor: pointer;
}
.jslink:active {
	color: #FAA700;
}

/* Hatnotes and disambiguation notices */
.hatnote {
	font-style: italic;
}
.hatnote i {
	font-style: normal;
}
div.hatnote {
	padding-left: 1.6em;
	margin-bottom: 0.5em;
}
div.hatnote + div.hatnote {
	margin-top: -0.5em;
}

/* Fix animated infobox images shifting the screen when images have different dimensions */
.content span.animated a > img,
.content span.animated a > .lazy-image-placeholder,
.content noscript span.animated > img {
    max-width: initial !important;
}

body.page-Main_Page #firstHeading {
    display: none;
}

/* Hide nomobile */
.nomobile {
	display: none;
}



/* Try to use nearest neighbour scaling for pixelated images */
.pixel-image,
.invslot-item-image,
.sprite {
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}


/* Classes corresponding to Minecraft formatting codes */
.format-0 {
	color: #000;
	text-shadow: 0.125em 0.125em 0 #000;
}

.format-1 {
	color: #00A;
	text-shadow: 0.125em 0.125em 0 #00002A;
}

.format-2 {
	color: #0A0;
	text-shadow: 0.125em 0.125em 0 #002A00;
}

.format-3 {
	color: #0AA;
	text-shadow: 0.125em 0.125em 0 #002A2A;
}

.format-4 {
	color: #A00;
	text-shadow: 0.125em 0.125em 0 #2A0000;
}

.format-5 {
	color: #A0A;
	text-shadow: 0.125em 0.125em 0 #2A002A;
}

.format-6 {
	color: #FA0;
	text-shadow: 0.125em 0.125em 0 #2A2A00;
}

.format-7 {
	color: #AAA;
	text-shadow: 0.125em 0.125em 0 #2A2A2A;
}

.format-8 {
	color: #555;
	text-shadow: 0.125em 0.125em 0 #151515;
}

.format-9 {
	color: #55F;
	text-shadow: 0.125em 0.125em 0 #15153F;
}

.format-a {
	color: #5F5;
	text-shadow: 0.125em 0.125em 0 #153F15;
}

.format-b {
	color: #5FF;
	text-shadow: 0.125em 0.125em 0 #153F3F;
}

.format-c {
	color: #F55;
	text-shadow: 0.125em 0.125em 0 #3F1515;
}

.format-d {
	color: #F5F;
	text-shadow: 0.125em 0.125em 0 #3F153F;
}

.format-e {
	color: #FF5;
	text-shadow: 0.125em 0.125em 0 #3F3F15;
}

.format-f,
#minetip-tooltip {
	color: #FFF;
	text-shadow: 0.125em 0.125em 0 #3F3F3F;
}

.format-l {
	font-weight: bold;
	letter-spacing: 0.125em;
}

.format-m {
	text-decoration: line-through;
}

.format-n {
	text-decoration: underline;
}

.format-o {
	font-style: italic;
}

/* Styling for minecraft style tooltip */
#minetip-tooltip {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #100010;
	background-color: rgba(16, 0, 16, 0.94);
	padding: 0.375em;
	font-family: Minecraft, sans-serif;
	font-size: 16px;
	word-spacing: 4px;
	white-space: nowrap;
	line-height: 1.25em;
	margin: 0.125em 0.25em;
	pointer-events: none;
	z-index: 9999;
}

#minetip-tooltip::before {
	content: "";
	position: absolute;
	top: 0.125em;
	right: -0.125em;
	bottom: 0.125em;
	left: -0.125em;
	border: 0.125em solid #100010;
	border-style: none solid;
	border-color: rgba(16, 0, 16, 0.94);
}

#minetip-tooltip::after {
	content: "";
	position: absolute;
	top: 0.125em;
	right: 0;
	bottom: 0.125em;
	left: 0;
	border: 0.125em solid #2D0A63;
	border-image: -webkit-linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
	border-image: linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
}

#minetip-tooltip > .description,
#minetip-tooltip > .minetip-description {
	display: block;
	margin-top: 0.25em;
}

/* Styling for tooltip */
.explain {
	border-bottom: 0;
	text-decoration: underline dotted;
	cursor: help;
}

/* Show help cursor when an abbr element has a title attribute */
abbr[title] {
	cursor: help;
}