mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 14:57:31 +00:00
1f5f72ed15
Check commit and GitHub actions for more details
22 lines
642 B
Plaintext
22 lines
642 B
Plaintext
.citizen-table-wrapper {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
// TODO: Move this out of tables styles when this is used by more stuff
|
|
.citizen-overflow {
|
|
&--left {
|
|
-webkit-mask-image: linear-gradient( 90deg, transparent, #000 15% );
|
|
mask-image: linear-gradient( 90deg, transparent, #000 15% );
|
|
}
|
|
|
|
&--right {
|
|
-webkit-mask-image: linear-gradient( 90deg, #000 85%, transparent );
|
|
mask-image: linear-gradient( 90deg, #000 85%, transparent );
|
|
}
|
|
|
|
&--left&--right {
|
|
-webkit-mask-image: linear-gradient( 90deg, transparent, #000 15%, #000 85%, transparent );
|
|
mask-image: linear-gradient( 90deg, transparent, #000 15%, #000 85%, transparent );
|
|
}
|
|
}
|