ui: modal - changing $modal-inner-padding in https://github.com/opnsense/core/commit/d085f4ef36 also changed modal-footer unintentionally, let overwrite it in our main.scss. closes https://github.com/opnsense/core/issues/7463

This commit is contained in:
Ad Schellevis 2024-05-17 18:14:33 +02:00
parent 3e36307258
commit af3d45c1e1
2 changed files with 9 additions and 0 deletions

View File

@ -874,6 +874,7 @@ div[data-for*="help_for"] {
padding: 15px;
}
#OPNsenseStdWaitDialog div.modal-body {
padding: 15px;
}
@ -882,3 +883,7 @@ div[data-for*="help_for"] {
max-height: calc(100vh - 265px);
overflow-y: auto;
}
.modal-footer {
padding: 15px;
}

View File

@ -7403,3 +7403,7 @@ div[data-for*=help_for] {
max-height: calc(100vh - 265px);
overflow-y: auto;
}
.modal-footer {
padding: 15px;
}