vant-fork
Version:
Lightweight Mobile UI Components built on Vue
55 lines (46 loc) • 877 B
CSS
@import './common/var.css';
.van-tree-select {
user-select: none;
position: relative;
&__nav {
width: 143px;
position: absolute;
left: 0;
top: 0;
bottom: 0;
overflow: scroll;
background-color: $white;
-webkit-overflow-scrolling: touch;
}
&__nitem {
line-height: 44px;
padding: 0 15px;
background-color: $white;
&--active {
background-color: $background-color;
}
}
&__content {
padding: 0 15px;
margin-left: 143px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
&__item {
position: relative;
line-height: 44px;
padding-left: 5px;
padding-right: 18px;
&--active {
color: $button-danger-background-color;
}
}
&__selected {
float: right;
position: absolute;
right: 0;
top: 0;
bottom: 0;
line-height: inherit;
}
}