-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.jsonc
25 lines (25 loc) · 1.09 KB
/
css.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
".noTextSelect - Class": {
"prefix": ".noTextSelect - Class",
"body": [
".noTextSelect {",
"\t-webkit-touch-callout: none; /* iOS Safari */",
"\t-webkit-user-select: none; /* Safari */",
"\t-khtml-user-select: none; /* Konqueror HTML */",
"\t-moz-user-select: none; /* Old versions of Firefox */",
"\t-ms-user-select: none; /* Internet Explorer/Edge */",
"\tuser-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */",
"}"
],
"description": "Disables the ability to select text."
}
//Output:
// .noTextSelect {
// -webkit-touch-callout: none; /* iOS Safari */
// -webkit-user-select: none; /* Safari */
// -khtml-user-select: none; /* Konqueror HTML */
// -moz-user-select: none; /* Old versions of Firefox */
// -ms-user-select: none; /* Internet Explorer/Edge */
// user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
// }
}