-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AG-11705 Update theme css to use theme params
- Adds accentColor, spacing and chrome theme params. - Updates css theme variables to inherit from the theme params and removes unnecessary indirection/inheritance. - Pushes some variables into their local context where they did not need to be global. - Fixes inconsistent colours across context menu, dialogs and other popovers.
- Loading branch information
1 parent
0236370
commit 3ebf0aa
Showing
48 changed files
with
359 additions
and
332 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
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
10 changes: 5 additions & 5 deletions
10
packages/ag-charts-community/src/components/popover/popover.css
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,12 +1,12 @@ | ||
.ag-charts-popover { | ||
position: absolute; | ||
border: var(--ag-charts-popover-border); | ||
border-radius: var(--ag-charts-popover-border-radius); | ||
background: var(--ag-charts-popover-background-color); | ||
color: var(--ag-charts-popover-foreground-color); | ||
border: var(--ag-charts-border); | ||
border-radius: var(--ag-charts-border-radius); | ||
background: var(--ag-charts-chrome-background-color); | ||
color: var(--ag-charts-chrome-text-color); | ||
font-family: var(--ag-charts-chrome-font-family); | ||
font-size: var(--ag-charts-chrome-font-size); | ||
font-weight: var(--ag-charts-chrome-font-weight); | ||
box-shadow: var(--ag-charts-popover-shadow); | ||
box-shadow: var(--ag-charts-shadow); | ||
z-index: var(--ag-charts-layer-ui-overlay); | ||
} |
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
Oops, something went wrong.