fix: Sticky table header styling in Safari (#12590)

* fix: Sticky table header styling in Safari

* feedback
This commit is contained in:
Tom Moor
2026-06-05 07:42:26 -04:00
committed by GitHub
parent c808bed712
commit 985038525c
+5
View File
@@ -2437,6 +2437,11 @@ table {
> .${EditorStyleHelper.tableScrollable} > table > tbody > tr:first-child {
position: relative;
z-index: 2;
> th {
// Safari requires the header cell to have raised z-index too
z-index: 2;
}
}
> .${EditorStyleHelper.tableScrollable} > table > tbody > tr:first-child > th {