+1
Iniciado
Tab header text selection prevention via css
To prevent user selection of the tab headers (In case they want to try switching the tab order or something).
css:
.tab-header {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Stackoverflow Solution: "css rule to disable text selection highlighting"
Tested in webkit + Chrome v25
css:
.tab-header {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Stackoverflow Solution: "css rule to disable text selection highlighting"
Tested in webkit + Chrome v25
0
icahill (Administrator) hace 12 años
I will have someone look into getting this implemented.
Servicio de atención al cliente por UserEcho