segment.less
1.11 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
67
//ๅ้ๆ
.m-segment{
overflow: hidden;
li{
width: 33.3%;
line-height: 1;
text-align: center;
float: left;
background-color: #FFF;
// border: 1px solid #e2e2e2;
// border-right: 1px solid #e2e2e2;
box-sizing: border-box;
position: relative;
&:after{
position: absolute;
content: '';
border-right: 1px solid #e2e2e2;
display: block;
height: 200%;
width: 0;
top: 0;
right: -1px;
z-index: 1;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: left top;
transform-origin: left top;
}
.text{
display: block;
color: #333;
font-size: 15px;
padding: 7px 0;
}
.subtext{
line-height: 1;
padding-top: 5px;
}
&:first-child{
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
&:last-child{
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
&:after{
display: none;
}
}
}
.on{
color: #FFF;
background-color: #69b8dc;
// border-right-color: #69b8dc;
&:after{
border-color: #69b8dc;
}
.text{
color: #FFF;
.font-gray{
color: #FFF !important;
}
}
}
}