You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.2 KiB
113 lines
2.2 KiB
.wux-dialog__button {
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
color: inherit!important;
|
|
background: 0 0!important;
|
|
font-size: inherit;
|
|
font-weight: 400;
|
|
line-height: inherit;
|
|
text-align: inherit;
|
|
text-decoration: none;
|
|
overflow: visible;
|
|
min-height: 0!important;
|
|
width: auto!important;
|
|
box-sizing: border-box;
|
|
-webkit-tap-highlight-color: transparent;
|
|
display: block;
|
|
flex: 1;
|
|
color: #33cd5f!important;
|
|
position: relative
|
|
}
|
|
.wux-dialog__button::after {
|
|
display: block;
|
|
position: static;
|
|
top: auto;
|
|
left: auto;
|
|
width: auto;
|
|
height: auto;
|
|
border: none;
|
|
border-radius: 0;
|
|
transform: none;
|
|
transform-origin: 0 0
|
|
}
|
|
.wux-dialog__button--default {
|
|
color: #444!important
|
|
}
|
|
.wux-dialog__button--primary {
|
|
color: #33cd5f!important
|
|
}
|
|
.wux-dialog__button--bold {
|
|
font-weight: 500!important
|
|
}
|
|
.wux-dialog__button--hover {
|
|
background-color: #ececec!important
|
|
}
|
|
.wux-dialog__button--disabled {
|
|
opacity: .3
|
|
}
|
|
.wux-dialog__prompt {
|
|
position: relative;
|
|
margin-top: 20rpx
|
|
}
|
|
.wux-dialog__prompt::after {
|
|
content: " ";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 200%;
|
|
height: 200%;
|
|
transform: scale(.5);
|
|
transform-origin: 0 0;
|
|
pointer-events: none;
|
|
box-sizing: border-box;
|
|
border: 0 solid #d9d9d9;
|
|
border-top-width: 1PX;
|
|
border-right-width: 1PX;
|
|
border-bottom-width: 1PX;
|
|
border-left-width: 1PX;
|
|
border-radius: 12rpx
|
|
}
|
|
.wux-dialog__input {
|
|
padding: 8rpx 12rpx;
|
|
height: 72rpx;
|
|
line-height: 1;
|
|
width: 100%;
|
|
text-align: left;
|
|
box-sizing: border-box
|
|
}
|
|
.wux-dialog__buttons {
|
|
display: flex;
|
|
flex: 1
|
|
}
|
|
.wux-dialog__buttons--horizontal .wux-dialog__button::after {
|
|
content: " ";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 1PX;
|
|
bottom: 0;
|
|
border-left: 1PX solid #d9d9d9;
|
|
color: #d9d9d9;
|
|
transform-origin: 0 0;
|
|
transform: scaleX(.5)
|
|
}
|
|
.wux-dialog__buttons--horizontal .wux-dialog__button:first-child::after {
|
|
display: none
|
|
}
|
|
.wux-dialog__buttons--vertical {
|
|
display: block;
|
|
height: auto
|
|
}
|
|
.wux-dialog__buttons--vertical .wux-dialog__button::after {
|
|
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)
|
|
}
|