Bug 6010 - Elements like buttons in Web Access UI can be selected
Summary: Elements like buttons in Web Access UI can be selected
Status: NEW
Alias: None
Product: ThinLinc
Classification: Unclassified
Component: Web Access (show other bugs)
Version: pre-1.0
Hardware: PC Unknown
: P2 Normal
Target Milestone: LowPrio
Assignee: Samuel Mannehed
URL:
Keywords: focus_focus
Depends on:
Blocks:
 
Reported: 2016-09-26 11:52 CEST by Samuel Mannehed
Modified: 2017-04-11 14:44 CEST (History)
1 user (show)

See Also:
Acceptance Criteria:


Attachments

Description Samuel Mannehed cendio 2016-09-26 11:52:15 CEST
The user can select buttons in the HTML5 toolbar. This looks ugly and confusing at times.
Comment 1 Samuel Mannehed cendio 2016-09-26 11:55:06 CEST
This css property can be set on elements:

   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   -o-user-select: none;
   user-select: none;

We have to be careful when using this though since there are some items in the UI which we do want to be selectable, like the text in the clipboard panel for example.

Note You need to log in before you can comment on or make changes to this bug.