mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-02 18:06:21 +00:00
26 lines
497 B
Plaintext
26 lines
497 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;
|
||
|
}
|
||
|
}
|
||
|
}
|