Can now select logs.

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

View File

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

View File

@ -12,3 +12,11 @@
-webkit-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;
}