Skip to content
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: Dialog 背景に z-index を追加 #4910

Merged
merged 2 commits into from
Sep 11, 2024
Merged

Conversation

uknmr
Copy link
Collaborator

@uknmr uknmr commented Sep 11, 2024

関連URL

概要

一部環境においてスタッキングコンテキストの発生した特定要素がダイアログ背景よりも上に現れてしまう不具合を修正します。

変更内容

ダイアログ背景の shr-z-overlap-base を消したのが原因だったため、戻しました。
https://github.com/kufu/smarthr-ui/pull/4848/files#diff-41a98e1c7f207238823888de15eee54e035b490d73a741f885cd1e7b834a15ebL20

確認方法

各ダイアログの Story にスタッキングコンテキストを追加したので、Chromatic に差分がでていなければ問題ありません。

@uknmr uknmr requested a review from a team as a code owner September 11, 2024 05:43
@uknmr uknmr requested review from s-sasaki-0529 and atzzCokeK and removed request for a team September 11, 2024 05:43
@uknmr uknmr enabled auto-merge (squash) September 11, 2024 05:59
@@ -52,6 +52,8 @@ export const Action_Dialog: StoryFn = () => {
aria-haspopup="dialog"
aria-controls="dialog-action"
data-test="dialog-trigger"
// 別のスタッキングコンテキストがダイアログ背景よりも上に来ないことを確認するための記述
style={{ position: 'relative', zIndex: 21 }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[ask]

マジックナンバーで良いです?軽く調べただけですが、一応テーマには z-index 定義があったので、ちゃんと強弱関係管理できるように変数化されてるのかなぁと気になりました。

export const defaultZIndex = {
AUTO: 'auto',
DEFAULT: 0,
FIXED_MENU: 100,
OVERLAP_BASE: 10000,
OVERLAP: 10500,
FLASH_MESSAGE: 11000,
}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

基本的には z-index: 1 で済むところを、Bootstrap などが使わている旧環境のために大きな値を使っている認識なので Story 上でプロダクトを疑似再現するマジックナンバーで良いと考えています。
Dialog の戻した z-index は定義値を使っています。

@uknmr uknmr merged commit 1039225 into master Sep 11, 2024
9 checks passed
@uknmr uknmr deleted the fix-DialogOverlap-zIndex branch September 11, 2024 06:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants