feat(DropdownMenu): DropdownMenu 组件样式调整 (#2229)

This commit is contained in:
Lindy 2019-11-01 14:48:54 +08:00 committed by neverland
parent 6f6beb30a5
commit 321ccf0c86
2 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,5 @@
@import '../common/style/var.less';
@import '../common/style/theme.less';
.van-dropdown-item {
position: fixed;
@ -12,7 +13,7 @@
&--active {
.van-dropdown-item__title,
.van-dropdown-item__icon {
color: @dropdown-menu-option-active-color;
.theme(color, '@dropdown-menu-option-active-color');
}
}
}

View File

@ -1,10 +1,11 @@
@import '../common/style/var.less';
@import '../common/style/theme.less';
.van-dropdown-menu {
display: flex;
height: @dropdown-menu-height;
background-color: @dropdown-menu-background-color;
user-select: none;
.theme(height, '@dropdown-menu-height');
.theme(background-color, '@dropdown-menu-background-color');
&__item {
display: flex;
@ -23,7 +24,7 @@
}
.van-dropdown-menu__title {
color: @dropdown-menu-title-disabled-text-color;
.theme(color, '@dropdown-menu-title-disabled-text-color');
}
}
}
@ -32,10 +33,10 @@
position: relative;
box-sizing: border-box;
max-width: 100%;
padding: @dropdown-menu-title-padding;
color: @dropdown-menu-title-text-color;
font-size: @dropdown-menu-title-font-size;
line-height: @dropdown-menu-title-line-height;
.theme(padding, '@dropdown-menu-title-padding');
.theme(color, '@dropdown-menu-title-text-color');
.theme(font-size,'@dropdown-menu-title-font-size');
.theme(line-height,'@dropdown-menu-title-line-height');
&::after {
position: absolute;
@ -50,7 +51,7 @@
}
&--active {
color: @dropdown-menu-title-active-text-color;
.theme(color,'@dropdown-menu-title-active-text-color');
}
&--down {