Skip to content

Commit

Permalink
Merge branch 'main' into datagrid/3151/4456
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Jan 14, 2022
2 parents 91b0e00 + 3f617e1 commit 9d950a9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

**Bug fixes**

- Updated the outline color in `euiCustomControlFocused` mixin to use `$euiFocusRingColor` instead of `currentColor` ([#5479](https://github.com/elastic/eui/pull/5479))
- Fixed keyboard navigation in `EuiDataGrid` not fully scrolling cells into view ([#5515](https://github.com/elastic/eui/pull/5515))

## [`45.0.0`](https://github.com/elastic/eui/tree/v45.0.0)
Expand Down Expand Up @@ -262,6 +263,14 @@

- Renamed `tokenKeyword` icon to `tokenTag` in `EuiToken` ([#5251](https://github.com/elastic/eui/pull/5251))

## [`39.1.4`](https://github.com/elastic/eui/tree/v39.1.4)

**Note: this release is a backport containing changes originally made in `44.0.0`**

**Deprecations**

- Deprecated `PartitionConfig` in favor of inclusion in Charts `theme.partition` ([#5492](https://github.com/elastic/eui/pull/5492)).

## [`39.1.3`](https://github.com/elastic/eui/tree/v39.1.2)

**Note: this release is a backport containing changes originally made after `42.0.0`**
Expand Down
7 changes: 4 additions & 3 deletions src/global_styling/mixins/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -344,13 +344,14 @@
// Requires a selector to work with the Amsterdam outline styles
@if ($amsterdamSelector) {
+ #{$amsterdamSelector} {
outline: $euiFocusRingSize solid currentColor;
outline: $euiFocusRingSize solid $euiFocusRingColor;
outline-offset: 2px;
}

// Chrome
&:focus-visible + #{$amsterdamSelector} {
outline-style: auto;
outline-offset: 3px;
outline: $euiFocusRingSize solid $euiFocusRingColor;
outline-offset: 2px;
}

&:not(:focus-visible) + #{$amsterdamSelector} {
Expand Down

0 comments on commit 9d950a9

Please sign in to comment.