mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Popup): Popup 组件样式调整 (#2237)
This commit is contained in:
parent
321ccf0c86
commit
573c1a7120
@ -228,6 +228,7 @@
|
|||||||
@panel-footer-padding: @padding-xs @padding-md;
|
@panel-footer-padding: @padding-xs @padding-md;
|
||||||
|
|
||||||
// Popup
|
// Popup
|
||||||
|
@popup-background-color: @white;
|
||||||
@popup-round-border-radius: 20px;
|
@popup-round-border-radius: 20px;
|
||||||
@popup-close-icon-size: 18px;
|
@popup-close-icon-size: 18px;
|
||||||
@popup-close-icon-color: @gray-dark;
|
@popup-close-icon-color: @gray-dark;
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
transition-timing-function: ease;
|
transition-timing-function: ease;
|
||||||
animation: ease both;
|
animation: ease both;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
.theme(background-color, '@white');
|
.theme(background-color, '@popup-background-color');
|
||||||
|
|
||||||
&--center {
|
&--center {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
@ -27,10 +27,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.van-popup--round {
|
&.van-popup--round {
|
||||||
.theme(
|
.theme(border-radius, '0 0 @popup-round-border-radius @popup-round-border-radius');
|
||||||
border-radius,
|
|
||||||
'0 0 @popup-round-border-radius @popup-round-border-radius'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,10 +37,7 @@
|
|||||||
transform: translate3d(0, -50%, 0);
|
transform: translate3d(0, -50%, 0);
|
||||||
|
|
||||||
&.van-popup--round {
|
&.van-popup--round {
|
||||||
.theme(
|
.theme(border-radius, '@popup-round-border-radius 0 0 @popup-round-border-radius');
|
||||||
border-radius,
|
|
||||||
'@popup-round-border-radius 0 0 @popup-round-border-radius'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,10 +47,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.van-popup--round {
|
&.van-popup--round {
|
||||||
.theme(
|
.theme(border-radius, '@popup-round-border-radius @popup-round-border-radius 0 0');
|
||||||
border-radius,
|
|
||||||
'@popup-round-border-radius @popup-round-border-radius 0 0'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -66,10 +57,7 @@
|
|||||||
transform: translate3d(0, -50%, 0);
|
transform: translate3d(0, -50%, 0);
|
||||||
|
|
||||||
&.van-popup--round {
|
&.van-popup--round {
|
||||||
.theme(
|
.theme(border-radius, '0 @popup-round-border-radius @popup-round-border-radius 0');
|
||||||
border-radius,
|
|
||||||
'0 @popup-round-border-radius @popup-round-border-radius 0'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user