mediawiki-skins-Citizen/resources/skins.citizen.styles/components/Tables.less
github-actions 1f5f72ed15 ci: 👷 lint code to MediaWiki standards
Check commit and GitHub actions for more details
2023-04-30 23:55:44 +00:00

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 );
}
}