-
Notifications
You must be signed in to change notification settings - Fork 72
Modal manager redwood styling #1994
Changes from 3 commits
df7037a
da5e02a
16db253
dcf6be0
6f30dff
533de88
ef5ae34
7121e78
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
|
||
## Unreleased | ||
|
||
* Added | ||
* Redwood theme styling. | ||
|
||
## 6.69.0 - (December 18, 2023) | ||
|
||
* Changed | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
:local { | ||
.redwood-theme { | ||
--terra-modal-manager-background-color: var(--modal-background-color); | ||
--terra-modal-manager-border: none; | ||
--terra-modal-manager-border-radius: var(--modal-border-radius); | ||
--terra-modal-manager-box-shadow: var(--modal-box-shadow); | ||
--terra-modal-manager-foreground-color: inherit; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -323,13 +323,14 @@ | |
|
||
// ======================================= | ||
// terra-modal-manager | ||
// https://github.com/cerner/terra-core/tree/main/packages/terra-modal-manager | ||
// https://github.com/cerner/terra-framework/tree/main/packages/terra-modal-manager | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These files are generated. I communicated this issue with the UX team. You don't want to manually update it as it would just be incorrect the next release. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Awesome, thank you so much for taking care of that, reverted in dcf6be0 |
||
// https://jira2.cerner.com/browse/UXPLATFORM-10006 | ||
// ======================================= | ||
.redwood-theme { | ||
--modal-background-color: var(--container-style-1-background-color); | ||
--modal-box-shadow: var(--rds-box-shadow-md); | ||
--modal-border-radius: var(--rds-border-radius-md); | ||
// TODO add --modal-foreground-color variable or remove this line is inherit color works | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I still think we don't want a UX theme variable here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed here: dcf6be0 |
||
} | ||
|
||
// ======================================= | ||
|
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.
I think you want "...redwood-theme/**/*.scss"
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.
Good catch, fixed in dcf6be0