diff --git a/src/popup/README.md b/src/popup/README.md
index e2101f10b..853573b45 100644
--- a/src/popup/README.md
+++ b/src/popup/README.md
@@ -42,7 +42,7 @@ Use `position` prop to set popup display position
```
@@ -53,7 +53,7 @@ Use `position` prop to set popup display position
v-model="show"
closeable
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
```
@@ -80,7 +80,7 @@ Use `position` prop to set popup display position
v-model="show"
round
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
```
diff --git a/src/popup/README.zh-CN.md b/src/popup/README.zh-CN.md
index 631e7313f..341ae6d1f 100644
--- a/src/popup/README.zh-CN.md
+++ b/src/popup/README.zh-CN.md
@@ -48,7 +48,7 @@ export default {
```
@@ -61,7 +61,7 @@ export default {
v-model="show"
closeable
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
```
@@ -90,7 +90,7 @@ export default {
v-model="show"
round
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
```
diff --git a/src/popup/demo/index.vue b/src/popup/demo/index.vue
index fb1848eea..e62bf887c 100644
--- a/src/popup/demo/index.vue
+++ b/src/popup/demo/index.vue
@@ -17,21 +17,21 @@
-
+
@@ -56,21 +56,21 @@
v-model="showCloseIcon"
closeable
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
@@ -84,7 +84,7 @@
v-model="showRoundCorner"
round
position="bottom"
- :style="{ height: '20%' }"
+ :style="{ height: '30%' }"
/>
diff --git a/src/popup/index.less b/src/popup/index.less
index ec62641cc..0e03b1646 100644
--- a/src/popup/index.less
+++ b/src/popup/index.less
@@ -96,7 +96,7 @@
cursor: pointer;
&:active {
- opacity: @active-opacity;
+ color: @popup-close-icon-active-color;
}
&--top-left {
diff --git a/src/style/var.less b/src/style/var.less
index 310b36c27..3af11611d 100644
--- a/src/style/var.less
+++ b/src/style/var.less
@@ -71,7 +71,7 @@
@action-sheet-item-disabled-text-color: @gray-5;
@action-sheet-subname-color: @gray-7;
@action-sheet-subname-font-size: @font-size-sm;
-@action-sheet-close-icon-size: 20px;
+@action-sheet-close-icon-size: 22px;
@action-sheet-close-icon-color: @gray-5;
@action-sheet-close-icon-active-color: @gray-6;
@action-sheet-close-icon-padding: 0 @padding-md;
@@ -527,8 +527,9 @@
@popup-background-color: @white;
@popup-transition: transform @animation-duration-base ease-out;
@popup-round-border-radius: 20px;
-@popup-close-icon-size: 18px;
-@popup-close-icon-color: @gray-6;
+@popup-close-icon-size: 22px;
+@popup-close-icon-color: @gray-5;
+@popup-close-icon-active-color: @gray-6;
@popup-close-icon-margin: 16px;
@popup-close-icon-z-index: 1;