mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(Popup): improve style when position is center (#10965)
This commit is contained in:
parent
0881de82af
commit
dcffa09812
@ -293,10 +293,6 @@ emit('clickInput');
|
|||||||
|
|
||||||
在 Vant 4.0 版本中,以下 API 进行了不兼容更新:
|
在 Vant 4.0 版本中,以下 API 进行了不兼容更新:
|
||||||
|
|
||||||
#### Tabs
|
|
||||||
|
|
||||||
- 移除了 `click` 和 `disabled` 事件,请使用 `click-tab` 事件代替
|
|
||||||
|
|
||||||
#### AddressEdit
|
#### AddressEdit
|
||||||
|
|
||||||
- 移除 `show-postal` 属性
|
- 移除 `show-postal` 属性
|
||||||
@ -304,6 +300,35 @@ emit('clickInput');
|
|||||||
- `change-area` 事件的参数调整为 `PickerOption[]` 类型
|
- `change-area` 事件的参数调整为 `PickerOption[]` 类型
|
||||||
- 移除未在文档中标注的 `getArea` 实例方法
|
- 移除未在文档中标注的 `getArea` 实例方法
|
||||||
|
|
||||||
|
#### Popup
|
||||||
|
|
||||||
|
Popup 的 CSS 样式进行了一定调整,请确认是否对项目中的 UI 产生影响。
|
||||||
|
|
||||||
|
- 默认添加了 `box-sizing: border-box` 样式
|
||||||
|
- 调整了 `position="center"` 时的水平居中方式,以解决弹窗宽度无法正确自适应的问题:
|
||||||
|
|
||||||
|
```less
|
||||||
|
// Vant 3
|
||||||
|
.van-popup--center {
|
||||||
|
left: 50%;
|
||||||
|
transform: translate3d(-50%, -50%, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Vant 4
|
||||||
|
.van-popup--center {
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
width: fit-content;
|
||||||
|
max-width: calc(100vw - var(--van-padding-md) * 2);
|
||||||
|
margin: 0 auto;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Tabs
|
||||||
|
|
||||||
|
- 移除了 `click` 和 `disabled` 事件,请使用 `click-tab` 事件代替
|
||||||
|
|
||||||
## 样式变量调整
|
## 样式变量调整
|
||||||
|
|
||||||
### 移除 Less 变量
|
### 移除 Less 变量
|
||||||
|
@ -22,7 +22,6 @@ body {
|
|||||||
|
|
||||||
.van-dialog {
|
.van-dialog {
|
||||||
top: 45%;
|
top: 45%;
|
||||||
left: 50%;
|
|
||||||
width: var(--van-dialog-width);
|
width: var(--van-dialog-width);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-size: var(--van-dialog-font-size);
|
font-size: var(--van-dialog-font-size);
|
||||||
|
@ -16,6 +16,7 @@ body {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
max-width: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
transform: none;
|
transform: none;
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@ body {
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
box-sizing: border-box;
|
||||||
background: var(--van-popup-background);
|
background: var(--van-popup-background);
|
||||||
transition: var(--van-popup-transition);
|
transition: var(--van-popup-transition);
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
@ -25,6 +26,8 @@ body {
|
|||||||
top: 50%;
|
top: 50%;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
width: fit-content;
|
||||||
|
max-width: calc(100vw - var(--van-padding-md) * 2);
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user