mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-01 01:16:38 +00:00
26 lines
440 B
Plaintext
26 lines
440 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:SemanticResultsFormats
|
|
* Module: ext.srf.datatables.v2.format
|
|
* Version: 4.2.1
|
|
*
|
|
* Date: 2024-03-19
|
|
*/
|
|
|
|
// Re-implement datatable responsiveness broken by SRF
|
|
// FIXME: Remove when upstream is fixed
|
|
@media screen and ( max-width: 640px ) {
|
|
.srf-datatable {
|
|
.dataTables_filter,
|
|
.dataTables_length {
|
|
float: none;
|
|
}
|
|
|
|
.dataTables_filter,
|
|
.dt-buttons {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|