_chat.css
1.05 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
.service-chat {
#chat-send-box {
border-top: 1PX solid #e5e5e5;
border-bottom: 1PX solid #e5e5e5;
padding: 16px 20px 14px;
.input-method,
.menu-trigger {
width: 60px;
height: 60px;
background-repeat: no-repeat;
background-size: 60px 60px;
}
/* 输入方式 */
.input-method {
display: block;
margin-right: 20px;
}
.input-text {
background-image: resolve("service/chat/input-text.png");
}
.input-voice {
background-image: resolve("service/chat/input-voice.png");
}
/* 输入框 */
.input-in {
display: block;
width: 100%;
height: 70px;
border: 1PX solid #e0e0e0;
border-radius: 8px;
padding: 16px;
}
.menu-trigger {
display: none;
margin-left: 20px;
background-image: resolve("service/chat/menu-trigger.png");
}
}
}