Skip to content

Commit

Permalink
1324: copy ExpressionButton's active state to a focused state (#1326)
Browse files Browse the repository at this point in the history
* 1324: copy ExpressionButton's active state to a focused state

* changelog
  • Loading branch information
chandlerprall authored Nov 26, 2018
1 parent c6bd101 commit 1c69f73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- `EuiBasicTable` now converts the `EuiTableRowCell` `header` into `undefined` if it's been provided as a non-string node, hiding the header and preventing the node from being rendered as `[object Object]` on narrow screens ([#1312](https://github.com/elastic/eui/pull/1312))
- Fixed `fullWidth` size of `EuiComboBox`, a regression introduced in `4.7.0` ([#1314](https://github.com/elastic/eui/pull/1314))
- Fixed error when passing empty string as `value` prop for `EuiSuperSelect` ([#1319](https://github.com/elastic/eui/pull/1319))
- `EuiExpressionButton` now shows focus state when user tabs to it ([#1326](https://github.com/elastic/eui/pull/1326))

## [`5.1.0`](https://github.com/elastic/eui/tree/v5.1.0)

Expand Down
4 changes: 4 additions & 0 deletions src/components/expression/_expression.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
border-bottom: $euiBorderEditable;
font-size: $euiFontSize;
cursor: pointer;

&:focus {
border-bottom: solid 2px $expressionColorHighlight;
}
}

.euiExpressionButton__description {
Expand Down

0 comments on commit 1c69f73

Please sign in to comment.