TipPanel.less
1.18 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
.wev-comp-TipPanel{
background-color:#fff;
}
.wev-comp-TipPanel .wev-tip-wrapper {
text-align: center;
padding: 10px;
}
.wev-comp-TipPanel .wev-tip-subtitle {
font-size: @font-size-base;
color: #9e9e9e;
}
.wev-comp-TipPanel .wev-tip-title {
font-size: 20 * @hd;
font-weight: 550;
color: #4c555d;
}
.wev-comp-TipPanel .wev-tip-vertical .wev-tip-wrap>div{
padding:2px 0;
}
.wev-comp-TipPanel .wev-tip-vertical .wev-tip-icon {
margin-top: 15px;
margin-bottom: 5px;
width: 80px;
height: 80px;
display: inline-block;
object-fit: cover;
}
.wev-comp-TipPanel .wev-tip-horizontal {
padding: 20px 10px;
overflow: hidden;
}
.wev-comp-TipPanel .wev-tip-horizontal .wev-tip-icon {
width: 50px;
height: 50px;
display: block;
float: left;
}
.wev-comp-TipPanel .wev-tip-horizontal .wev-tip-wrap {
margin-left: 10px;
text-align: left;
float: left;
width:calc(100% - 75px);
}
.wev-comp-TipPanel .wev-tip-horizontal .wev-tip-wrap>div {
height:25px;
line-height:25px;
width:100%;
word-break: keep-all;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}
.wev-comp-TipPanel .wev-tip-horizontal .wev-tip-wrap .wev-tip-singletitle{
height:50px;
line-height:50px;
}