Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 4: Line 4:
     word-break: keep-all;
     word-break: keep-all;
   }
   }
/* Tables - Horizontal Scroll on Mobile */
.entry-content,
.content {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
position: relative;
}
table {
width: auto;
min-width: 100%;
table-layout: auto;
}
table.wikitable {
width: auto;
min-width: 100%;
table-layout: auto;
}
}
}

Revision as of 13:32, 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;
		min-width: 100%;
		table-layout: auto;
	}

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