-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new z-index design tokens (#982)
Introduces new z-index tokens and adjustments for pre-existing tokens. BREAKING CHANGE: The z-index values for zIndexModal and zIndexDropdownable have increased. Closes D2IQ-92067
- Loading branch information
1 parent
f3e5d1b
commit 4c9c6e9
Showing
5 changed files
with
31 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
{ | ||
"layout": { | ||
"zIndex": { | ||
"content": { | ||
"value": "0" | ||
}, | ||
"modal": { | ||
"value": "1" | ||
}, | ||
"dropdownable": { | ||
"value": "2" | ||
} | ||
} | ||
"layout": { | ||
"zIndex": { | ||
"deep": { | ||
"value": "-1" | ||
}, | ||
"content": { | ||
"value": "0" | ||
}, | ||
"sticky": { | ||
"value": "100" | ||
}, | ||
"overlay": { | ||
"value": "200" | ||
}, | ||
"modal": { | ||
"value": "300" | ||
}, | ||
"dropdownable": { | ||
"value": "400" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters