1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .dropdown-menu-index {
- display: block;
- height: initial;
- }
- @import "../common/index.acss";
- .dropdown-menu-index .van-dropdown-menu {
- display: -webkit-flex;
- display: flex;
- box-shadow: 0 2px 12px rgba(100, 101, 102, 0.12);
- -webkit-user-select: none;
- user-select: none;
- height: 50px;
- height: var(--dropdown-menu-height, 50px);
- background-color: #fff;
- background-color: var(--dropdown-menu-background-color, #fff);
- }
- .dropdown-menu-index .van-dropdown-menu__item {
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-align-items: center;
- align-items: center;
- -webkit-justify-content: center;
- justify-content: center;
- min-width: 0;
- }
- .dropdown-menu-index .van-dropdown-menu__item:active {
- opacity: 0.7;
- }
- .dropdown-menu-index .van-dropdown-menu__item--disabled:active {
- opacity: 1;
- }
- .dropdown-menu-index
- .van-dropdown-menu__item--disabled
- .van-dropdown-menu__title {
- color: #969799;
- color: var(--dropdown-menu-title-disabled-text-color, #969799);
- }
- .dropdown-menu-index .van-dropdown-menu__title {
- position: relative;
- box-sizing: border-box;
- max-width: 100%;
- padding: 0 8px;
- padding: var(--dropdown-menu-title-padding, 0 8px);
- color: #323233;
- color: var(--dropdown-menu-title-text-color, #323233);
- font-size: 15px;
- font-size: var(--dropdown-menu-title-font-size, 15px);
- line-height: 18px;
- line-height: var(--dropdown-menu-title-line-height, 18px);
- }
- .dropdown-menu-index .van-dropdown-menu__title:after {
- position: absolute;
- top: 50%;
- right: -4px;
- margin-top: -5px;
- border-color: transparent transparent currentcolor currentcolor;
- border-style: solid;
- border-width: 3px;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
- opacity: 0.8;
- content: "";
- }
- .dropdown-menu-index .van-dropdown-menu__title--active {
- color: #ee0a24;
- color: var(--dropdown-menu-title-active-text-color, #ee0a24);
- }
- .dropdown-menu-index .van-dropdown-menu__title--down:after {
- margin-top: -1px;
- -webkit-transform: rotate(135deg);
- transform: rotate(135deg);
- }
|