From 2d4939f14cf6d345ac7fd19e360025cb4d94f009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Fri, 10 Nov 2017 14:56:44 +0100 Subject: [PATCH] Able to select in chat --- server/public/assets/css/style.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/server/public/assets/css/style.css b/server/public/assets/css/style.css index 3f7f7157..d16159a5 100755 --- a/server/public/assets/css/style.css +++ b/server/public/assets/css/style.css @@ -326,12 +326,12 @@ li.disabled span { } .select{ - -webkit-touch-callout: initial; - -webkit-user-select: initial; - -khtml-user-select: initial; - -moz-user-select: initial; - -ms-user-select: initial; - user-select: initial; + -webkit-touch-callout: text; + -webkit-user-select: text; + -khtml-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } #chatchannel li:nth-child(even), #chatall li:nth-child(even) { @@ -344,12 +344,12 @@ li.disabled span { #chatchannel li, #chatall li{ cursor:text; - -webkit-touch-callout: initial; - -webkit-user-select: initial; - -khtml-user-select: initial; - -moz-user-select: initial; - -ms-user-select: initial; - user-select: initial; + -webkit-touch-callout: text; + -webkit-user-select: text; + -khtml-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; padding: 4px; margin-left: 0px; }