mirror of
https://github.com/openwrt/luci
synced 2025-04-04 22:33:43 +08:00
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:
parent
47d26bcb62
commit
046a121087
@ -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) {
|
||||||
|
@ -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) {
|
||||||
|
@ -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) {
|
||||||
|
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user