(fix float style with infoboxes) |
m (typo) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
/* [[Template:Infobox_start]], some compat, may be better via wgCitizenTableNowrapClasses */ | /* [[Template:Infobox_start]], some compat, may be better via wgCitizenTableNowrapClasses */ | ||
@media screen and (min-width: 500px) { | @media screen and (min-width: 500px) { | ||
.citizen-table-wrapper:has(> .t-infobox) { | .citizen-table-wrapper:has(> .t-infobox) { | ||
overflow-x: unset; | overflow-x: unset; | ||
} | |||
} | } | ||
/* workaround for https://github.com/StarCitizenTools/mediawiki-skins-Citizen/issues/623 (example: on [[user:dfjera]]) */ | |||
.skin-citizen:not(.citizen-sections-enabled) .section-indicator { | |||
display: none; | |||
} | } |
Latest revision as of 00:46, 29 March 2024
/* All CSS here will be loaded for users of the Citizen skin */
/* [[Template:Infobox_start]], some compat, may be better via wgCitizenTableNowrapClasses */
@media screen and (min-width: 500px) {
.citizen-table-wrapper:has(> .t-infobox) {
overflow-x: unset;
}
}
/* workaround for https://github.com/StarCitizenTools/mediawiki-skins-Citizen/issues/623 (example: on [[user:dfjera]]) */
.skin-citizen:not(.citizen-sections-enabled) .section-indicator {
display: none;
}