LRR/css/main.css

10 lines
214 B
CSS
Raw Normal View History

2022-05-25 09:07:59 +08:00
/* 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;
}