Allow to copy text from comment box in Chrome v62
Since Chrome v62 it is not possible to select/copy text from an element that has the 'user-select' property set to 'initial'. Change it to 'text', which allows to select/copy. See documentation of user-select [1] for reference. [1] https://www.w3schools.com/cssref/css3_pr_user-select.asp Bug: Issue 7481 Change-Id: If3225ccd093a7457aceb9f4c45311c1b2dc5cffb
This commit is contained in:
parent
7555bec878
commit
3e44875878
@ -60,11 +60,11 @@
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
|
|
||||||
-webkit-touch-callout: initial;
|
-webkit-touch-callout: initial;
|
||||||
-webkit-user-select: initial;
|
-webkit-user-select: text;
|
||||||
-khtml-user-select: initial;
|
-khtml-user-select: text;
|
||||||
-moz-user-select: text;
|
-moz-user-select: text;
|
||||||
-ms-user-select: text;
|
-ms-user-select: text;
|
||||||
user-select: initial;
|
user-select: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commentBox {
|
.commentBox {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user