Skip to content
Snippets Groups Projects
Unverified Commit f11f444f authored by Samuel Couillard's avatar Samuel Couillard Committed by GitHub
Browse files

Fix Table dropdown overflow issue (#4133)

* Fix Table dropdown overflow issue

* Add to user recording table
parent 04b1cb42
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,9 @@
table, td, tr {
border-color: whitesmoke !important;
}
.dropdown {
position: static;
}
}
.dropdown-item {
......@@ -105,6 +108,7 @@
}
#recordings-table {
@include media-breakpoint-down(xl) {
td, tr {
// Name and recording date
......
......@@ -40,6 +40,10 @@ body {
white-space: nowrap;
}
.btn-sm {
min-width: 0 !important;
}
.btn-xlg {
font-size: 1.5rem;
padding: 0.75rem 5rem;
......
......@@ -20,6 +20,10 @@
}
}
.dropdown {
position: static;
}
.dropdown-item {
color: $muted;
&:hover {
......
......@@ -41,7 +41,7 @@ export default function ManageUserRow({ user }) {
<td className="border-start-0">
<Dropdown className="float-end cursor-pointer">
<Dropdown.Toggle className="hi-s" as={EllipsisVerticalIcon} />
<Dropdown.Menu className="admin-table-dropdown">
<Dropdown.Menu>
<Dropdown.Item as={Link} to={`/admin/edit_user/${user.id}`}>
<PencilSquareIcon className="hi-s me-2" />
{t('view')}
......
......@@ -60,7 +60,7 @@ export default function ServerRoomRow({ room }) {
<td className="border-start-0">
<Dropdown className="float-end cursor-pointer">
<Dropdown.Toggle className="hi-s" as={EllipsisVerticalIcon} />
<Dropdown.Menu className="admin-table-dropdown">
<Dropdown.Menu>
{ room.online
? (
<Dropdown.Item onClick={handleJoin}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment