Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Tag: Manual revert
 
(42 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* Responsive: Related articles - título arriba, contenido abajo */
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .related-articles-box{
    word-break: keep-all;
  }


.entry-content,
.content {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
/* Forzar scroll horizontal en tablas */
table {
width: auto !important;
min-width: 800px !important;
table-layout: auto !important;
display: table !important;
}
table.wikitable {
width: auto !important;
min-width: 800px !important;
table-layout: auto !important;
display: table !important;
}
/* Asegurar que las celdas mantengan un ancho mínimo razonable */
table td,
table th {
min-width: 100px;
white-space: normal;
word-break: break-word;
}
table.wikitable td,
table.wikitable th {
min-width: 100px;
white-space: normal;
word-break: break-word;
}
}
}

Latest revision as of 01:56, 18 February 2026

@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {

}