-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend_mess.php
More file actions
75 lines (68 loc) · 1.42 KB
/
Copy pathsend_mess.php
File metadata and controls
75 lines (68 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
require_once('functions.php');
?>
<style>
.emojis {
background: #fff;
display: inline;
padding: 5px;
z-index: 2;
}
.emoji_list {
position:relative;
bottom:-50px;
left:-50px;
top:-350px;
background: #fff;
border-style: outset;
width: 220px;
height: 250px;
z-index: 2;
overflow-y: scroll;
display:none;
}
.emoji {
padding: 5px;
}
.chat_main::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
.chat_main::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5;
}
.chat_main::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #D62929;
}
#emoji_list::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
#emoji_list::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5;
}
#emoji_list::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #D62929;
}/*
*{
border: 1px solid red;
}*/
</style>
<form action="" id="chat_form" class="chat_submit" method="post">
<div>
<input type="text" id="mess">
<div class='emojis' id='emojis' onclick="Get_Emoji_List(); return false;"><!-- Get_Emoji_List(); -->
😋
</div>
<input type="submit" value="Відіслати" name="send">
<br>
</div>
</form>