mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
57 lines
898 B
CSS
57 lines
898 B
CSS
@import '../common/style/var.css';
|
|
@import '../common/style/ellipsis.css';
|
|
|
|
.tree-select {
|
|
user-select: none;
|
|
position: relative;
|
|
font-size: 16px;
|
|
|
|
&__nav {
|
|
width: 143px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
overflow: scroll;
|
|
background-color: #fff;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
&__nitem {
|
|
line-height: 44px;
|
|
padding: 0 15px;
|
|
background-color: #fff;
|
|
|
|
&--active {
|
|
background-color: #f8f8f8;
|
|
}
|
|
}
|
|
|
|
&__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: #f44;
|
|
}
|
|
}
|
|
|
|
&__selected {
|
|
float: right;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
line-height: inherit;
|
|
}
|
|
}
|