Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/packages/overlay/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ The component provides the following CSS variables, which can be used to customi
| Name | Description | Default Value |
| --- | --- | --- |
| \--nutui-overlay-bg-color | Overlay background color | `$color-mask` |
| \--nutui-overlay-zIndex | z-index | `1000` |
| \--nutui-overlay-content-bg-color | Mask layer nested content background color | `$white` |
| \--nutui-overlay-content-color | Mask layer nested content font color | `$color-title` |
| \--nutui-overlay-animation-duration | Mask layer nested content animation duration | `0.3s` |
Expand Down
1 change: 0 additions & 1 deletion src/packages/overlay/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ import { Overlay } from '@nutui/nutui-react'
| 名称 | 说明 | 默认值 |
| --- | --- | --- |
| \--nutui-overlay-bg-color | 遮罩层背景颜色 | `$color-mask` |
| \--nutui-overlay-zIndex | overlay 的 z-index | `1000` |
| \--nutui-overlay-content-bg-color | 遮罩层嵌套内容背景颜色 | `$white` |
| \--nutui-overlay-content-color | 遮罩层嵌套内容字体颜色 | `$color-title` |
| \--nutui-overlay-animation-duration | 遮罩层动画延时的时长 | `0.3s` |
Expand Down
1 change: 0 additions & 1 deletion src/packages/overlay/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ import { Overlay } from '@nutui/nutui-react-taro'
| 名称 | 说明 | 默认值 |
| --- | --- | --- |
| \--nutui-overlay-bg-color | 遮罩层背景颜色 | `$color-mask` |
| \--nutui-overlay-zIndex | overlay 的 z-index | `1000` |
| \--nutui-overlay-content-bg-color | 遮罩层嵌套内容背景颜色 | `$white` |
| \--nutui-overlay-content-color | 遮罩层嵌套内容字体颜色 | `$color-title` |
| \--nutui-overlay-animation-duration | 遮罩层动画延时的时长 | `0.3s` |
Expand Down
1 change: 0 additions & 1 deletion src/packages/overlay/doc.zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ import { Overlay } from '@nutui/nutui-react'
| 名稱 | 說明 | 默認值 |
| --- | --- | --- |
| \--nutui-overlay-bg-color | 遮罩層背景顏色 | `$color-mask` |
| \--nutui-overlay-zIndex | overlay 的 z-index | `1000` |
| \--nutui-overlay-content-bg-color | 遮罩層嵌套內容背景顏色 | `$white` |
| \--nutui-overlay-content-color | 遮罩層嵌套內容字體顏色 | `$color-title` |
| \--nutui-overlay-animation-duration | 遮罩層動畫延時的時長 | `0.3s` |
Expand Down
1 change: 0 additions & 1 deletion src/packages/overlay/overlay.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
width: 100%;
height: 100%;
background-color: $overlay-bg-color;
z-index: $overlay-zIndex;
}

.nut-overflow-hidden {
Expand Down
1 change: 0 additions & 1 deletion src/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,6 @@ $hoverbutton-item-icon-color-active: var(

//overlay(✅)
$overlay-bg-color: var(--nutui-overlay-bg-color, $color-mask) !default;
$overlay-zIndex: var(--nutui-overlay-zIndex, 1000) !default;
$overlay-content-bg-color: var(
--nutui-overlay-content-bg-color,
$color-background-overlay
Expand Down
Loading