12 lines
227 B
CSS
12 lines
227 B
CSS
|
|
||
|
/* this css class is used to enable copying in text with the mouse. */
|
||
|
.text-selectable {
|
||
|
|
||
|
-webkit-user-select: text;
|
||
|
-moz-user-select: text;
|
||
|
-ms-user-select: text;
|
||
|
user-select: text;
|
||
|
cursor:auto
|
||
|
|
||
|
}
|