Skip to content

Commit

Permalink
fixed positon of fields popup
Browse files Browse the repository at this point in the history
  • Loading branch information
emilie19 committed Nov 17, 2023
1 parent 357907d commit 66cec9b
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/components/OccurrencesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -406,13 +406,24 @@ table {
position: relative;
}
td:first-child, th:first-child {
th:first-child {
position: sticky;
left:0;
z-index:1;
z-index:2;
}
td:last-child, th:last-child {
th:last-child {
position: sticky;
right:0;
z-index:1;
z-index:2;
}
td:first-child {
left:0;
z-index:2;
}
td:last-child {
right:0;
z-index:2;
}
td,
Expand Down Expand Up @@ -485,6 +496,7 @@ th {
display: none;
position: fixed;
font-weight: normal;
z-index: 1
}
.content-popup {
Expand Down

0 comments on commit 66cec9b

Please sign in to comment.