treewide: set css tag flex-wrap to wrap buttons in modal view

In CSS, the flex-wrap property is used in a flex container to control
how flex items are laid out when there is not enough space in a single
line.

If a modal is displayed on small screens, the buttons are not wrapped. They
remain on one line. This breaks the layout and does not look good.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert 2025-03-06 10:32:18 +01:00 committed by Paul Donald
parent 47d26bcb62
commit 046a121087
4 changed files with 4 additions and 0 deletions

View File

@ -1422,6 +1422,7 @@ footer ul.breadcrumb {
.modal > .button-row { .modal > .button-row {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
} }
.modal > .button-row > button:not(:last-of-type) { .modal > .button-row > button:not(:last-of-type) {

View File

@ -1784,6 +1784,7 @@ body:not(.Interfaces) .cbi-rowstyle-2:first-child {
.modal .button-row { .modal .button-row {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
} }
.modal .button-row > button:not(:first-of-type) { .modal .button-row > button:not(:first-of-type) {

View File

@ -277,6 +277,7 @@ body.modal-overlay-active #modal_overlay {
.modal .button-row { .modal .button-row {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
} }
.modal .button-row > :not(:last-child) { .modal .button-row > :not(:last-child) {

View File

@ -245,6 +245,7 @@ hr {
.modal .button-row { .modal .button-row {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
} }
.modal .button-row > :not(:last-child) { .modal .button-row > :not(:last-child) {