neutrino
neutrino copied to clipboard
UI should not be selectable unless it is tagged so
I have something like this in my app
.notSelectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.selectable {
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
Thanks ! Would you like to test it on Windows, Linux, and OSX and make a PR ?
As I am not a user of this project, sorry for the drive-by comment, I am not sure how this would be implemented, "unless it is tagged so" how does this impact what a user does? Does it mean they add a class or a property to a component or call a method in an api?
@fabrixxm Could you answer this please ?