Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit bb290b6

Browse files
Fix sticky behavior in Safari (#525)
1 parent 4791ef5 commit bb290b6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ between two tables within the same tab.
3636
reset the filter for the affected column(s)
3737

3838
### Fixed
39+
[#259](https://github.com/plotly/dash-table/issues/259)
40+
- Fixed columns `sticky` on Safari
41+
3942
[#491](https://github.com/plotly/dash-table/issues/491)
4043
- Fixed inconsistent behaviors when editing cell headers
4144

src/dash-table/components/Table/Table.less

+5
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@
257257
flex: 0 0 auto;
258258
left: 0;
259259
position: sticky;
260+
position:-webkit-sticky;
260261
z-index: 400;
261262
}
262263

@@ -436,6 +437,10 @@
436437
background-color: rgb(250, 250, 250);
437438
}
438439

440+
.dash-spreadsheet-inner td {
441+
background-color: white;
442+
}
443+
439444
.sort {
440445
cursor: pointer;
441446
float: left;

0 commit comments

Comments
 (0)