1ab99daaba
Generic: Project CI / Lint & Validate (pull_request) Successful in 18s
Universal: PR Check / Branch Policy (pull_request) Successful in 3s
Universal: PR Check / Require Docs Update (pull_request) Has been skipped
Universal: PR Check / Wiki Update Reminder (pull_request) Has been skipped
Universal: PR Check / Secret Scan (pull_request) Successful in 8s
Universal: PR Check / Validate PR (pull_request) Failing after 14s
Branch Cleanup / Delete merged branch (pull_request) Successful in 2s
RC Revert / Rename rc/ back to dev/ (pull_request) Has been skipped
Joomla: Metadata Validation / Validate Joomla Metadata (pull_request) Successful in 12s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Failing after 5s
Generic: Project CI / Tests (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
- Add/Edit Destination modal: SFTP key can now be UPLOADED as a file (read into the key textarea client-side via FileReader) instead of copy/paste; pasting still works. - Give .modal-content a "msbackup" class with a 1rem padding frame — Bootstrap's .modal-content has no padding of its own, which made the modal feel cramped. Styling lives in the WAM stylesheet (media/.../admin.css), scoped to .msbackup. Claude-Session: https://claude.ai/code/session_01WbGBN9VyRK61zczYWcCQ2i
38 lines
957 B
CSS
38 lines
957 B
CSS
/**
|
|
* MokoSuiteBackup — admin styles (loaded via the Joomla Web Asset Manager).
|
|
*/
|
|
|
|
/* Add/Edit Destination modal.
|
|
* Bootstrap's .modal-content has no padding of its own (its header/body/footer
|
|
* children provide it), which made the modal feel cramped against its border.
|
|
* Give the container a comfortable 1rem frame via the .msbackup namespace and let
|
|
* the inner sections align to it (no double horizontal padding). */
|
|
.modal-content.msbackup {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.modal-content.msbackup .modal-header,
|
|
.modal-content.msbackup .modal-body,
|
|
.modal-content.msbackup .modal-footer {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.modal-content.msbackup .modal-body .row + .row,
|
|
.modal-content.msbackup .remote-type-fields {
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.modal-content.msbackup hr {
|
|
margin: 1rem 0;
|
|
opacity: 0.12;
|
|
}
|
|
|
|
.modal-content.msbackup .form-label {
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.modal-content.msbackup .form-check.form-switch {
|
|
padding-top: 0.15rem;
|
|
}
|