mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-24 00:03:56 +00:00
de81163226
These browser fallbacks etc are no longer needed We even had an unused file Change-Id: I278f8adbb72cbd587b4a812aa11f40a63d334c8c
9 lines
380 B
Plaintext
9 lines
380 B
Plaintext
// from https://stackoverflow.com/a/12178019/323407
|
|
.fade-out-vertical( @backgroundColor: white ) {
|
|
background-image: linear-gradient( to bottom, @background-color-transparent 0%, @backgroundColor 100% ); // W3C
|
|
}
|
|
|
|
.fade-out-horizontal( @backgroundColor: white ) {
|
|
background-image: linear-gradient( to right, @background-color-transparent 0%, @backgroundColor 100% ); // W3C
|
|
}
|