2014-02-26 02:47:24 +00:00
|
|
|
.unselectable() {
|
2014-02-18 15:25:56 +00:00
|
|
|
-webkit-user-select: none;
|
2017-03-02 23:45:42 +00:00
|
|
|
-moz-user-select: -moz-none;
|
2014-06-25 00:55:29 +00:00
|
|
|
-ms-user-select: none;
|
2014-02-18 15:25:56 +00:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2021-03-29 09:19:27 +00:00
|
|
|
// from https://stackoverflow.com/a/12178019/323407
|
2016-07-18 14:24:02 +00:00
|
|
|
.fade-out-vertical( @backgroundColor: white ) {
|
|
|
|
@invisible: fadeout( @backgroundColor, 100% );
|
|
|
|
background-image: linear-gradient( to bottom, @invisible 0%, @backgroundColor 100% ); // W3C
|
2014-02-26 02:47:24 +00:00
|
|
|
}
|
2019-07-29 14:33:58 +00:00
|
|
|
|
2016-07-18 14:24:02 +00:00
|
|
|
.fade-out-horizontal( @backgroundColor: white ) {
|
|
|
|
@invisible: fadeout( @backgroundColor, 100% );
|
|
|
|
background-image: linear-gradient( to right, @invisible 0%, @backgroundColor 100% ); // W3C
|
2014-10-29 19:50:53 +00:00
|
|
|
}
|
2014-03-17 08:07:53 +00:00
|
|
|
|
2016-07-18 14:24:02 +00:00
|
|
|
.rotate( @degrees: 45deg ) {
|
|
|
|
transform: rotate( @degrees );
|
2014-04-02 00:07:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.grayscale() {
|
2022-05-19 22:58:01 +00:00
|
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
2016-07-18 14:24:02 +00:00
|
|
|
-webkit-filter: grayscale( 100% );
|
2022-05-19 22:58:01 +00:00
|
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
2016-07-18 14:24:02 +00:00
|
|
|
filter: grayscale( 100% );
|
2014-11-17 22:18:23 +00:00
|
|
|
}
|