mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
The `transition` property does not need prefixing. In fact, very few properties need that nowadays. So remove it to simplify the code. This is strictly a refactor with no style change intended. Many of these styles shouldn't have been prefixed even if needed. The prefixes exist exactly because the implementations might differ from the incoming standard. Looking at the supported browsers: https://caniuse.com/#search=transition We see that this property has had mainstream support from 2012 and was supported on Firefox in 2006 !!!
8 lines
192 B
SCSS
8 lines
192 B
SCSS
@mixin prefixed-user-select($value) {
|
|
-webkit-touch-callout: $value;
|
|
-webkit-user-select: $value;
|
|
-moz-user-select: $value;
|
|
-ms-user-select: $value;
|
|
user-select: $value;
|
|
}
|