Fix for dropdown menus being clipped by table-responsive containers.

This commit is contained in:
7heMech
2025-11-13 12:06:36 +02:00
parent 1c442dcce6
commit 7f9b9dfea4

View File

@@ -95,3 +95,8 @@ label.row {
border-radius: var(--tblr-border-radius) 0 0 var(--tblr-border-radius); border-radius: var(--tblr-border-radius) 0 0 var(--tblr-border-radius);
} }
} }
/* Fix for dropdown menus being clipped by table-responsive containers. */
.table-responsive .dropdown {
position: static;
}