Pin the action buttons to the bottom of the scrollable dialogs (#11407)

* Let scrollable dialogs shrink to the size of the content

Signed-off-by: Dominik Henneke <dominik.henneke@nordeck.net>

* Pin the action buttons to the bottom of the scrollable dialogs

Signed-off-by: Dominik Henneke <dominik.henneke@nordeck.net>

---------

Signed-off-by: Dominik Henneke <dominik.henneke@nordeck.net>
pull/28217/head
Dominik Henneke 2023-08-17 09:12:44 +02:00 committed by GitHub
parent 4a91a29d8c
commit 33ec7147d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -58,12 +58,13 @@ limitations under the License.
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 0; min-height: 0;
max-height: 100%; flex: 1;
} }
.mx_CompoundDialog_content { .mx_CompoundDialog_content {
overflow: auto; overflow: auto;
padding: 8px 32px; padding: 8px 32px;
flex: 1;
} }
.mx_CompoundDialog_footer { .mx_CompoundDialog_footer {