Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Fixed
- [#670](https://github.com/plotly/dash-table/pull/670) Fix a bug where `derived_filter_query_structure` was not getting updated properly
- [#665](https://github.com/plotly/dash-table/pull/665) Fix a bug in Firefox where the dropdown cells height is incorrect

## [4.5.1] - 2019-11-14
### Fixed
Expand Down
12 changes: 12 additions & 0 deletions src/dash-table/components/Table/Table.less
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,18 @@
}
}

/*
* fixes Firefox td height bug on td > dropdown children
* bug should only appear on FF but
* @supports = scoped to Firefox only
* to minimize side effects
*/
@supports (-moz-appearance:none) {
td.dropdown .dash-cell-value-container {
height: auto;
}
}

th.dash-filter {
position: relative;

Expand Down