Can now select logs.

This commit is contained in:
Sean Li 2014-09-04 12:51:01 -07:00
parent 000d916693
commit 8645cc60ce
2 changed files with 9 additions and 0 deletions

View File

@ -199,6 +199,7 @@
padding: 1em; padding: 1em;
font-family: monospace; font-family: monospace;
min-height: @dashboard-content-height; min-height: @dashboard-content-height;
.text-select();
} }
.warning-badge { .warning-badge {

View File

@ -12,3 +12,11 @@
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
} }
.text-select() {
-ms-user-select: text;
-moz-user-select: -moz-text;
-khtml-user-select: text;
-webkit-user-select: text;
user-select: text;
}