123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .wux-actionsheet__popup {
- background-color: transparent
- }
- .wux-actionsheet__content {
- margin-left: 16rpx;
- margin-right: 16rpx;
- width: auto;
- overflow: hidden
- }
- .wux-actionsheet__content--theme-wx {
- margin-left: 0;
- margin-right: 0;
- margin-bottom: 0
- }
- .wux-actionsheet__content--theme-wx .wux-actionsheet__group {
- border-radius: 0;
- margin-bottom: 12rpx
- }
- .wux-actionsheet__content--theme-wx .wux-actionsheet__group--options {
- background-color: #fff
- }
- .wux-actionsheet__content--theme-wx .wux-actionsheet__group--cancel {
- margin-bottom: 0
- }
- .wux-actionsheet__content--theme-wx .wux-actionsheet__button {
- font-size: 36rpx;
- color: #000
- }
- .wux-actionsheet__content--theme-wx .wux-actionsheet__button--cancel {
- font-weight: 400
- }
- .wux-actionsheet__content--theme-wx.wux-actionsheet__content--has-cancel {
- background-color: #efeff4
- }
- .wux-actionsheet__group {
- margin-bottom: 16rpx;
- border-radius: 8rpx;
- background-color: #fff;
- overflow: hidden
- }
- .wux-actionsheet__group--options {
- background-color: #f1f2f3
- }
- .wux-actionsheet__title {
- padding: 32rpx;
- color: #8f8f8f;
- text-align: center;
- font-size: 26rpx
- }
- .wux-actionsheet__button {
- position: relative;
- display: block;
- margin: 0;
- padding: 0;
- min-width: 104rpx;
- min-height: 96rpx;
- vertical-align: top;
- text-align: center;
- text-overflow: ellipsis;
- cursor: pointer;
- width: 100%;
- border-radius: 0;
- background-color: transparent;
- color: #007aff;
- font-size: 42rpx;
- line-height: 96rpx;
- display: flex;
- align-items: center;
- justify-content: center
- }
- .wux-actionsheet__button--hover {
- box-shadow: none;
- border-color: #d1d3d6;
- color: #007aff;
- background: #e4e5e7
- }
- .wux-actionsheet__button--destructive {
- color: #ff3b30!important
- }
- .wux-actionsheet__button--cancel {
- font-weight: 500
- }
- .wux-actionsheet__button--disabled {
- opacity: .3!important
- }
- .wux-actionsheet__group .wux-actionsheet__button {
- border-top: none
- }
- .wux-actionsheet__group .wux-actionsheet__button::after {
- transform: none;
- transform-origin: none;
- border: none;
- border-radius: 0;
- content: " ";
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- height: 1PX;
- border-top: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 0;
- transform: scaleY(.5)
- }
- .wux-actionsheet__group .wux-actionsheet__button:first-child:last-child::after {
- border-width: 0
- }
- .wux-actionsheet__icon {
- width: 48rpx;
- height: 48rpx;
- display: inline-block;
- margin-right: 20rpx
- }
|