Jump to content

MediaWiki:Common.css: Difference between revisions

From Marillia
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


/* Target the cells (th and td) within the custom table class */
/* Target the cells (th and td) within the custom table class */
table.wikitable.no-o-border th,
table.wikitable.no-i-border th,
table.wikitable.no-o-border td {
table.wikitable.no-i-border td {
     border: none !important;
     border: none;
}
}


/* Ensure borders are collapsed and spacing is 0 (optional, but ensures clean removal of borders) */
/* Ensure borders are collapsed and spacing is 0 (optional, but ensures clean removal of borders) */
table.wikitable.no-o-border {
table.wikitable.no-i-border {
     border-collapse: collapse !important;
     border-collapse: collapse !important;
     border-spacing: 0 !important;
     border-spacing: 0 !important;
}
}

Latest revision as of 01:43, 20 July 2025

/* CSS placed here will be applied to all skins */

/* Target the cells (th and td) within the custom table class */
table.wikitable.no-i-border th,
table.wikitable.no-i-border td {
    border: none;
}

/* Ensure borders are collapsed and spacing is 0 (optional, but ensures clean removal of borders) */
table.wikitable.no-i-border {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}