Skip to content

Commit

Permalink
fix: style value unset is not supported on IE
Browse files Browse the repository at this point in the history
  • Loading branch information
nihgwu committed Jul 11, 2019
1 parent dbf0138 commit e360fd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## NEXT VERSION

- fix: style value `unset` is not supported on IE

## v1.6.4 (2019-07-09)

- fix: content been selected when dragging on IE/FF (regression from #56)
Expand Down
8 changes: 3 additions & 5 deletions src/_BaseTable.scss
Expand Up @@ -216,7 +216,9 @@ $table-prefix: BaseTable !default;
&:hover {
background-color: $header-cell-hovered-background-color;
cursor: pointer;
}

&:not(.#{$table-prefix}__header-cell--sorting):hover {
.#{$table-prefix}__sort-indicator {
display: block;
color: $sort-indicator-hovered-color;
Expand All @@ -225,14 +227,10 @@ $table-prefix: BaseTable !default;
}

&--sorting {
.#{$table-prefix}__sort-indicator {
display: block;
}

&,
&:hover {
.#{$table-prefix}__sort-indicator {
display: block;
color: unset;
}
}
}
Expand Down

0 comments on commit e360fd5

Please sign in to comment.