Commit 02970d955def0781253f7dfa4a904bc6f3a7ca10

Authored by Marcelo Puebla
1 parent fab8b4d96c
Exists in master

Agregada clase para no permitir seleccionar texto.

Showing 1 changed file with 8 additions and 0 deletions   Show diff stats
src/sass/general.scss
... ... @@ -288,3 +288,11 @@ button.clear-input{
288 288 background-color: $primaryTransparency;
289 289 }
290 290 }
  291 +.disable-selection {
  292 + user-select: none;
  293 + -moz-user-select: none; /* Firefox */
  294 + -ms-user-select: none; /* Internet Explorer */
  295 + -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  296 + -webkit-user-select: none; /* Chrome, Safari, and Opera */
  297 + -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
  298 +}