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