Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion themes/luci-theme-design/htdocs/luci-static/design/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2347,8 +2347,30 @@ div.cbi-dropdown.cbi-button {
display: inline;
}

/* Page action buttons: right-aligned at bottom right */
.cbi-page-actions {
text-align: center;
display: flex;
justify-content: flex-end;
align-items: center;
gap: .5em;
}

.cbi-page-actions > form[method="post"] {
display: inline-block;
}

/* Modal button row: left-right layout (ignore on left, save on right) */
.modal .cbi-page-actions,
.modal > .button-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: .5em;
}

.modal .cbi-page-actions > button:first-of-type,
.modal > .button-row > button:first-of-type {
margin-right: auto;
}

.cbi-page-actions > form[method="post"] {
Expand Down