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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月22日 14:52
| *
| */
|
|
| @import '../../conf/vars';
|
| .msg-reply-view {
| &-main {
| padding: 8px;
| height: 500px;
| display: flex;
| }
| &-list {
| border-right: 1px solid #E6E6E6;
| }
| &-content{
| width: 700px;
| height: 400px;
| border-bottom: 1px solid #E6E6E6;
| overflow: auto;
| padding: 10px;
| }
| &-content::-webkit-scrollbar{
| width: 0;
| }
| &-info {
| padding: 8px;
| line-height: 30px;
| color: #000;
| }
| &-admin {
|
| float: right;
| background: #1790FF;
| margin-right: 10px;
| color: #fff;
| padding: 10px;
| border-radius: 10px;
| }
| &-user {
| float: left;
| margin: 10px;
| border: 1px solid #F2F2F2;
| padding: 10px;
| border-radius: 10px;
| }
| &-time {
| margin: 6px;
| text-align: center;
| color: #B2B2B2;
| }
| }
|
|