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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月17日 14:57
| *
| */
|
|
| @import '../../conf/vars';
|
| .msg-view {
| &-main {
| padding: 8px;
| }
| }
| .circle{
| width: 12px;
| height: 12px;
| background-color:#1790FF;
| border-radius: 50%;
| -moz-border-radius: 50%;
| -webkit-border-radius: 50%;
| }
|
| .not-circle{
| width: 12px;
| height: 12px;
| background-color:#CCCCCC;
| border-radius: 50%;
| -moz-border-radius: 50%;
| -webkit-border-radius: 50%;
| }
|
|