3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-13 01:02:50 +02:00

Prevent dragging

This commit is contained in:
Fluffy Jenkins 2020-01-08 00:37:00 +00:00
parent 27d2aaa8ce
commit 9066682d32
2 changed files with 19 additions and 4 deletions
scripts/communityModules/chat

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<head draggable="false">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
@ -15,6 +15,14 @@
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style>
.disabledrag {
-webkit-user-drag: none !important;
-khtml-user-drag: none !important;
-moz-user-drag: none !important;
-o-user-drag: none !important;
user-drag: none !important;
}
html {
height: 100%;
}
@ -153,12 +161,20 @@
background-color: #a62113 !important;
}
body,img,a,div {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag: none;
user-drag: none;
-webkit-touch-callout: none;
}
</style>
</head>
<body>
<div class="Content row">
<div class="col s12 valign-wrapper" style="padding: 10px ">
<ul class="tabs tabs-fixed-width z-depth-2 col s6" id="tabs">
<li class="tab col s2"><a class="black-text active" href="#Local">Local</a></li>
@ -183,7 +199,6 @@
<div id="Domain" class="col s12 ChatLog"></div>
<div id="Grid" class="col s12 ChatLog"></div>
<input type="text" class="ChatInputText col s12" id="ChatInputText" size="256">
</div>
</body>

View file

@ -457,4 +457,4 @@ function shutdown() {
}
chatBar.close();
chatHistory.close();
}
}