2024-07-05 10:29:42 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
|
|
|
|
2021-03-29 09:19:27 +00:00
|
|
|
// from https://stackoverflow.com/a/12178019/323407
|
2024-07-05 10:29:42 +00:00
|
|
|
.fade-out-vertical( @backgroundColor: @background-color-base ) {
|
2024-05-03 18:24:00 +00:00
|
|
|
background-image: linear-gradient( to bottom, @background-color-transparent 0%, @backgroundColor 100% ); // W3C
|
2014-02-26 02:47:24 +00:00
|
|
|
}
|
2019-07-29 14:33:58 +00:00
|
|
|
|
2024-07-05 10:29:42 +00:00
|
|
|
.fade-out-horizontal( @backgroundColor: @background-color-base ) {
|
2024-05-03 18:24:00 +00:00
|
|
|
background-image: linear-gradient( to right, @background-color-transparent 0%, @backgroundColor 100% ); // W3C
|
2014-10-29 19:50:53 +00:00
|
|
|
}
|