mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
125 lines
1.8 KiB
Plaintext
125 lines
1.8 KiB
Plaintext
@import '../common/style/var.less';
|
|
|
|
@tabs-line-height: 44px;
|
|
@tabs-card-height: 30px;
|
|
|
|
.van-tabs {
|
|
position: relative;
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
&__wrap {
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
|
|
&--page-top {
|
|
position: fixed;
|
|
}
|
|
|
|
&--content-bottom {
|
|
top: auto;
|
|
bottom: 0;
|
|
}
|
|
|
|
&--scrollable {
|
|
.van-tab {
|
|
flex: 0 0 22%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__scroll--card {
|
|
border: 1px solid @red;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
&__nav {
|
|
display: flex;
|
|
user-select: none;
|
|
position: relative;
|
|
background-color: @white;
|
|
|
|
&--line {
|
|
height: 100%;
|
|
}
|
|
|
|
&--card {
|
|
height: @tabs-card-height;
|
|
|
|
.van-tab {
|
|
color: @red;
|
|
border-right: 1px solid @red;
|
|
line-height: @tabs-card-height;
|
|
|
|
&:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
&.van-tab--active {
|
|
color: @white;
|
|
background-color: @red;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&__line {
|
|
z-index: 1;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 2px;
|
|
position: absolute;
|
|
background-color: @red;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
&--line {
|
|
padding-top: @tabs-line-height;
|
|
|
|
.van-tabs__wrap {
|
|
height: @tabs-line-height;
|
|
}
|
|
}
|
|
|
|
&--card {
|
|
padding-top: @tabs-card-height;
|
|
margin: 0 15px;
|
|
|
|
.van-tabs__wrap {
|
|
height: @tabs-card-height;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__track {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.van-tab {
|
|
flex: 1;
|
|
cursor: pointer;
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
position: relative;
|
|
color: @gray-darker;
|
|
line-height: @tabs-line-height;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
background-color: @white;
|
|
min-width: 0; /* hack for flex ellipsis */
|
|
|
|
&--active {
|
|
font-weight: 500;
|
|
color: @text-color;
|
|
}
|
|
|
|
&--disabled {
|
|
color: @gray;
|
|
}
|
|
}
|