subscriptions: Fix broken UI for subscriber and member search.

Fix overlapping UI layout for stream subscribers search
on screens smaller than 320px. Break the search field
to a new row in the layout. Also fix the same issue in
the group settings > members panel.

Fixes #29368
This commit is contained in:
Aditya Bajaj 2024-03-25 12:49:52 +08:00 committed by Tim Abbott
parent 545e912a75
commit 484ef17afc
1 changed files with 8 additions and 0 deletions

View File

@ -239,6 +239,14 @@ h4.user_group_setting_subsection_title {
.search {
max-width: 160px;
}
@media (max-width: $ms_min) {
float: none;
display: flex;
justify-content: flex-start;
align-items: center;
margin: 0 0 5px;
}
}
.subscriber_list_add .form-inline,