tip.less
1.17 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
.xn-tip {
display: inline-block;
font-size: @xn-font-size;
height: 28px;
text-align: center;
line-height: 28px;
color: @xn-font-primary;
padding:0 15px;
}
.xn-tip-success {
background: @xn-box-success-bg;
border: 1px solid @xn-box-success-bd;
}
.xn-tip-success:before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
background: url('@{xn-img-location}/img/xn-img-bg.png') -23px 0 no-repeat;
background-size: 218px 218px;
vertical-align: middle;
margin: -3px 3px 0 0;
}
.xn-tip-wrong {
background: @xn-box-error-bg;
border: 1px solid @xn-box-error-bd;
}
.xn-tip-wrong:before {
display: inline-block;
content: "";
width: 16px;
height: 16px;
background: url('@{xn-img-location}/img/xn-img-bg.png') 0 0 no-repeat;
background-size: 218px 218px;
vertical-align: middle;
margin: -3px 3px 0 0;
}
.xn-tip-warn {
background: @xn-box-warn-bg;
border: 1px solid @xn-box-warn-bd;
}
.xn-tip-warn:before{
display: inline-block;
content: "";
width: 16px;
height: 16px;
background: url('@{xn-img-location}/img/xn-img-bg.png') -47px 0 no-repeat;
background-size: 218px 218px;
vertical-align: middle;
margin: -3px 3px 0 0;
}