Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 14: Line 14:


table {
table {
width: auto;
width: auto !important;
min-width: 100%;
min-width: 100% !important;
table-layout: auto;
table-layout: auto !important;
}
}


table.wikitable {
table.wikitable {
width: auto;
width: auto !important;
min-width: 100%;
min-width: 100% !important;
table-layout: auto;
table-layout: auto !important;
}
}
}
}

Revision as of 13:33, 28 January 2026

/* Responsive: Related articles - título arriba, contenido abajo */
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .related-articles-box{
     word-break: keep-all;
  }

	/* Tables - Horizontal Scroll on Mobile */
	.entry-content,
	.content {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}

	table {
		width: auto !important;
		min-width: 100% !important;
		table-layout: auto !important;
	}

	table.wikitable {
		width: auto !important;
		min-width: 100% !important;
		table-layout: auto !important;
	}
}