Skip to content

Commit c0acb26

Browse files
committed
Fix Z fighting issue with the field filter. |
1 parent f60bf3f commit c0acb26

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,9 @@ Release History
467467
+---------+------------+----------------------------------------------------------------------------------------------------------+
468468
| Version | Date | Summary |
469469
+=========+============+==========================================================================================================+
470-
| 4.2.9 | 2024-04-02 | | Fix Z fighting issue with the field filter. |
471-
| | | | Make field filter matching more permissive. |
470+
| | | Fix Z fighting issue with the field filter. |
471+
+---------+------------+----------------------------------------------------------------------------------------------------------+
472+
| 4.2.9 | 2024-04-02 | | Make field filter matching more permissive. |
472473
| | | | Add a distinct (cyan) color for annotated fields. |
473474
+---------+------------+----------------------------------------------------------------------------------------------------------+
474475
| 4.2.8 | 2024-02-11 | | Improve field filter matching. |

frontend/src/App.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ input.RowLimit {
460460
display: flex;
461461
justify-content: center;
462462
align-items: center;
463-
z-index: 100;
463+
z-index: 99;
464464
pointer-events: none;
465465
}
466466

@@ -478,6 +478,7 @@ input.RowLimit {
478478

479479
.Tooltip,
480480
.ContextMenu {
481+
z-index: 100;
481482
position: fixed;
482483
background: white;
483484
border: 1px solid var(--border-color);

0 commit comments

Comments
 (0)