Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/_mixins.sass
1496 views
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
=user-select($val:"none")
7
-webkit-user-select : #{$val}
8
-moz-user-select : #{$val}
9
-ms-user-select : #{$val}
10
user-select : #{$val}
11
12
=disable-user-select
13
+user-select(none)
14
15
=enable-user-select
16
+user-select(text)
17