ID:1775399
 
Resolved
Text in button controls was selectable.
BYOND Version:507
Operating System:Windows 7 Pro 64-bit
Web Browser:Chrome 40.0.2214.94
Applies to:Webclient
Status: Resolved (507.1275)

This issue has been resolved.
507.1272

Descriptive Problem Summary:
Text in buttons is selectable which makes for a poor UI experience. Users can accidently select the text and it looks ugly and unprofessional.

Numbered Steps to Reproduce Problem:
Create a project with an interface.
Add a button with some text
Run it in the webclient
Click and drag across the button text

Expected Results:
Button text shouldn't be selectable

Actual Results:
Button text is selectable.

Workarounds:
Make my own buttons using images


CSS work-around:
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Lummox JR resolved issue with message:
Text in button controls was selectable.