Skip to content

Commit

Permalink
Fix sticky behavior in Safari (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet committed Aug 2, 2019
1 parent 53c14cf commit f1c6306
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/dash-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ between two tables within the same tab.
reset the filter for the affected column(s)

### Fixed
[#259](https://github.com/plotly/dash-table/issues/259)
- Fixed columns `sticky` on Safari

[#491](https://github.com/plotly/dash-table/issues/491)
- Fixed inconsistent behaviors when editing cell headers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@
flex: 0 0 auto;
left: 0;
position: sticky;
position:-webkit-sticky;
z-index: 400;
}

Expand Down Expand Up @@ -436,6 +437,10 @@
background-color: rgb(250, 250, 250);
}

.dash-spreadsheet-inner td {
background-color: white;
}

.sort {
cursor: pointer;
float: left;
Expand Down

0 comments on commit f1c6306

Please sign in to comment.