-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(module:message): fix the z-index of overlay #8081
fix(module:message): fix the z-index of overlay #8081
Conversation
This preview will be available after the AzureCI is passed. |
&.ant-modal-mask { | ||
opacity: 1; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc91af4
to
064e9d8
Compare
Codecov Report
@@ Coverage Diff @@
## master #8081 +/- ##
=======================================
Coverage 91.64% 91.65%
=======================================
Files 515 515
Lines 17640 17640
Branches 2790 2790
=======================================
+ Hits 16167 16168 +1
+ Misses 1175 1174 -1
Partials 298 298
|
064e9d8
to
6230b0c
Compare
6230b0c
to
55cb870
Compare
Hi @HyperLife1119,
I have a theme.less file under src folder with content below (generated by
It seems the tilde in this patch.less file can't be recognized.
Are you able to build successfully in this case? Thanks. |
I use npm to install dependencies and everything works fine. |
Interesting, I'm using pnpm. Not sure if that's the reason, I'll try npm when I get a chance. |
It's definitely an issue of pnpm, I have to |
Hi, @HyperLife1119 Are these issues(#8119 #8106 ) caused by that pr, please take a look? Also the switching theme on the official website is unusually |
@OriginRing 通过 #8122 修复这一问题。 |
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
Issue Number: #8010
由于
.cdk-global-overlay-wrapper
是绝对定位,给.cdk-global-overlay-wrapper
的子元素设置z-index
是无效的。What is the new behavior?
将
z-index
样式设置到.cdk-global-overlay-wrapper
上。Does this PR introduce a breaking change?
Other information
在此之前的 nz 的 cdk-overlay 预建样式是不完整的,此 PR 将导入完整的
@angular/cdk/overlay-prebuilt.css
,用户不再需要自行导入该样式,我希望这点会在 CHANGELOG 中特别指出。