From ceb999034d452313a2d8b4f0d6adace2827c4749 Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Wed, 26 Sep 2018 11:05:46 -0700 Subject: [PATCH 1/2] Use pointer cursor when a EuiTable row is clickable. --- CHANGELOG.md | 1 + src/components/table/_table.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ffc85fbbb0..f1ea827baf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - Added a new `colorPalette` service for retrieving and generating color arrays for use in charts ([#1209](https://github.com/elastic/eui/pull/1209)) - Added `1` as a valid value for the `columns` prop in `EuiFlexGrid` ([#1210](https://github.com/elastic/eui/pull/1210)) +- Use `cursor: pointer` to indicate clickable `EuiTable` rows ([]()) ## [`4.2.0`](https://github.com/elastic/eui/tree/v4.2.0) diff --git a/src/components/table/_table.scss b/src/components/table/_table.scss index 160310b3791..50c7ac72821 100644 --- a/src/components/table/_table.scss +++ b/src/components/table/_table.scss @@ -232,6 +232,7 @@ .euiTableRow-isClickable { &:hover { background-color: $euiTableHoverClickableColor; + cursor: pointer; } &:focus { From e997146c33b30210217b6402563704ec2aa57e0b Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Wed, 26 Sep 2018 11:11:01 -0700 Subject: [PATCH 2/2] Changelog. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1ea827baf0..be69b7c0b1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ - Added a new `colorPalette` service for retrieving and generating color arrays for use in charts ([#1209](https://github.com/elastic/eui/pull/1209)) - Added `1` as a valid value for the `columns` prop in `EuiFlexGrid` ([#1210](https://github.com/elastic/eui/pull/1210)) -- Use `cursor: pointer` to indicate clickable `EuiTable` rows ([]()) +- Use `cursor: pointer` to indicate clickable `EuiTable` rows ([#1213](https://github.com/elastic/eui/pull/1213)) ## [`4.2.0`](https://github.com/elastic/eui/tree/v4.2.0)