123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- .cl-tabs {
- width: 100%;
- &__header {
- display: flex;
- height: 80rpx;
- position: relative;
- }
- &__bar {
- white-space: nowrap;
- box-sizing: border-box;
- flex: 1;
- .uni-scroll-view::-webkit-scrollbar {
- display: none;
- }
- &-box {
- display: inline-flex;
- position: relative;
- height: 100%;
- width: 100%;
- }
- &-item {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- font-size: 28rpx;
- box-sizing: border-box;
- .cl-tabs__icon {
- font-size: 30rpx;
- &--prefix {
- margin-right: 10rpx;
- }
- &--suffix {
- margin-left: 10rpx;
- }
- }
- &.is-active {
- color: $cl-color-primary;
- }
- }
- }
- &__dropdown {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 100rpx;
- &-box {
- position: absolute;
- top: 80rpx;
- left: 0;
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- overflow: hidden;
- transition: all 0.3s;
- z-index: 99;
- }
- }
- &__line {
- height: 4rpx;
- width: 16px;
- position: absolute;
- bottom: 2rpx;
- border-radius: 20rpx;
- transition: all 0.5s;
- background-color: $cl-color-primary;
- }
- &__container {
- height: calc(100% - 80rpx);
- background-color: #fff;
- .cl-tab-pane {
- height: 100%;
- &__scroller {
- height: 100%;
- }
- }
- }
- &.is-sticky {
- .cl-tabs__header {
- position: sticky;
- z-index: 99;
- /* #ifdef H5 */
- top: 44px;
- /* #endif */
- /* #ifndef H5 */
- top: 0;
- /* #endif */
- }
- }
- &.is-content {
- height: 100%;
- }
- &.is-fill {
- .cl-tabs__bar-item {
- flex: 1;
- }
- }
- &.is-border {
- .cl-tabs__header {
- border-bottom: 1rpx solid #eee;
- }
- }
- &.is-dropdown {
- .cl-tabs__bar {
- width: calc(100% - 100rpx);
- }
- }
- }
|