LRR/css/main.css

11 lines
229 B
CSS
Raw Normal View History

2022-05-25 09:07:59 +08:00
2022-06-03 09:19:10 +08:00
/* this css class is used to enable copying in text with the mouse. */
2022-05-25 09:07:59 +08:00
.text-selectable {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
2022-06-09 19:46:47 +08:00
cursor:auto
2022-05-25 09:07:59 +08:00
}