Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b99012d
Merge pull request #1 from elastic/master
anuragxxd Feb 15, 2021
a868bc2
Merge pull request #2 from elastic/master
anuragxxd Feb 17, 2021
5b9d8d4
Merge pull request #3 from elastic/master
anuragxxd Feb 18, 2021
3e175f9
feat: Added Disabled property to EuiAvatar
anuragxxd Feb 18, 2021
885e512
Merge pull request #4 from elastic/master
anuragxxd Feb 18, 2021
a5ab927
Updated CHANGELOG.md
anuragxxd Feb 18, 2021
f1f3d1c
Merge branch 'master' of https://github.com/git-anurag-hub/eui
anuragxxd Feb 18, 2021
7a8a884
[EuiAvatar]-Disabled property for images
anuragxxd Feb 19, 2021
bcfe4eb
Made it dynamic
anuragxxd Feb 19, 2021
389b449
Resolving conflicts
anuragxxd Feb 20, 2021
9f63594
Merge pull request #5 from elastic/master
anuragxxd Feb 20, 2021
54c0630
Removed icloud
anuragxxd Feb 21, 2021
3c049bf
Added Bundle file
anuragxxd Feb 21, 2021
5fc266e
EuiAvatar Fixex
anuragxxd Feb 21, 2021
a4a1fbc
Added test
anuragxxd Feb 21, 2021
4ab2463
Fixed: Clickable rows do not highlight in sub-tables
anuragxxd Feb 23, 2021
6538215
Revert master changes
anuragxxd Feb 23, 2021
a6e2fa3
To Revert: Testing example
anuragxxd Feb 25, 2021
1fa9bf5
Added: More Styles
anuragxxd Feb 25, 2021
8122b7d
Update src/components/table/_table.scss
anuragxxd Feb 25, 2021
b594b39
Update src/components/table/_table.scss
anuragxxd Feb 26, 2021
21999e1
Merge remote-tracking branch '2_upstream/master' into Dev-EuiTableRow
Mar 2, 2021
3f1b3ca
Revert "To Revert: Testing example"
anuragxxd Mar 2, 2021
110848a
Merge branch 'Dev-EuiTableRow' of https://github.com/git-anurag-hub/e…
anuragxxd Mar 2, 2021
11ec5ac
Added Changelog entry
anuragxxd Mar 3, 2021
23472d7
Merge remote-tracking branch 'upstream/master' into Dev-EuiTableRow
Mar 3, 2021
a36be10
cl
Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

- Added `panelProps` to `EuiPopover` ([#4573](https://github.com/elastic/eui/pull/4573))

**Bug fixes**

- Fixed hover effect of nested clickable rows in `EuiBasicTable` ([#4566](https://github.com/elastic/eui/pull/4566))

## [`31.9.1`](https://github.com/elastic/eui/tree/v31.9.1)

**Bug fixes**
Expand Down
28 changes: 14 additions & 14 deletions src/components/table/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,22 @@
background-color: $euiTableHoverColor;
}

&.euiTableRow-isExpandedRow {
.euiTableRowCell {
background-color: $euiTableHoverColor;

&.euiTableRow-isClickable {

&:hover {
background-color: $euiTableHoverClickableColor;
cursor: pointer;
}

&:focus {
background-color: $euiTableFocusClickableColor;
}
}

&.euiTableRow-isExpandedRow {
background-color: $euiTableHoverColor;

&.euiTableRow-isSelectable .euiTableCellContent {
padding-left: $euiTableCellCheckboxWidth + $euiTableCellContentPadding;
}
Expand Down Expand Up @@ -234,14 +245,3 @@
max-height: unset;
}
}

.euiTableRow-isClickable {
&:hover {
background-color: $euiTableHoverClickableColor;
cursor: pointer;
}

&:focus {
background-color: $euiTableFocusClickableColor;
}
}