tab.less
745 Bytes
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
.wev-tab-title{
box-sizing: border-box;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-bottom: 1px solid #d9d9d9;
}
.wev-tab-title > ul{
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
display: table;
}
.wev-tab-title > ul > li{
line-height: 34 * @hd;
cursor: pointer;
padding: 0 16px;
display: table-cell;
position: relative;
color: #a8a8a8;
text-align: center;
border: 0;
white-space: nowrap;
}
.wev-tab-title > ul > li.wev-tab-selected{
border-bottom: 2px solid var(--themeColor);
color: var(--themeColor);
font-weight: normal;
}
.wev-tab-content{
padding:15px 0;
}
.wev-tab-content .wev-tab-panel.wev-tabpanel-hidden{
display:none;
}