Skip to content

Commit

Permalink
fix(datagrid): action overflow action-item font size fix (#1429)
Browse files Browse the repository at this point in the history
## PR Checklist

Please check if your PR fulfills the following requirements:

- [x] Tests for the changes have been added (for bug fixes / features)
- [ ] Docs have been added / updated (for bug fixes / features)
- [ ] If applicable, have a visual design approval

## PR Type

What kind of change does this PR introduce?

<!-- Please check the one that applies to this PR using "x". -->

- [x] Bugfix
- [ ] Feature
- [ ] Code style update (formatting, local variables)
- [ ] Refactoring (no functional changes, no api changes)
- [ ] Build related changes
- [ ] CI related changes
- [ ] Documentation content changes
- [ ] Other... Please describe:

## What is the current behavior?

<!-- Please describe the current behavior that you are modifying, or
link to a relevant issue. -->

Issue Number: CDE-1747

## What is the new behavior?

## Does this PR introduce a breaking change?

- [ ] Yes
- [ ] No

<!-- If this PR contains a breaking change, please describe the impact
and migration path for existing applications below. -->

## Other information

Co-authored-by: Srinivas Padidapelli <padidapellis@vmware.com>
  • Loading branch information
spadidapelli and Srinivas Padidapelli authored Jun 13, 2024
1 parent f11a9a3 commit ec6a19b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/angular/src/data/datagrid/_datagrid.clarity.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
dropdown-variables.$clr-dropdown-text-color,
variables.$clr-use-custom-properties
);
font-size: dropdown-variables.$clr-dropdown-font-size;
font-size: dropdown-variables.$clr-dropdown-item-font-size;
letter-spacing: dropdown-variables.$clr-dropdown-letter-spacing;

background: transparent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $clr-dropdown-header-letter-spacing: variables.$clr-p4-letter-spacing !default;
// Usage: ../popover/dropdown/_menu-mixins.clarity.scss
// Dropdown Item
$clr-dropdown-item-color: variables.$clr-color-neutral-700 !default;
$clr-dropdown-item-font-size: variables.$clr-p1-font-size !default;
$clr-dropdown-item-font-size: variables.$clr-typography-smalltext !default;
$clr-dropdown-item-font-weight: variables.$clr-p1-font-weight !default;
$clr-dropdown-item-letter-spacing: variables.$clr-p1-letter-spacing !default;
$clr-dropdown-item-height: variables.$clr_baselineRem_1_25 !default;
Expand Down

0 comments on commit ec6a19b

Please sign in to comment.