CSS: Remove obsolete `icinga-form` styles & store max view width in a variable

This commit is contained in:
Yonas Habteab 2023-09-15 11:49:59 +02:00 committed by Johannes Meyer
parent 6a4314120b
commit 3f372330b3
1 changed files with 4 additions and 8 deletions

View File

@ -1,6 +1,7 @@
// Style
@visual-width: 1.5em;
@max-view-width: 50em;
.migration-state-banner, .change-database-user-description {
.rounded-corners();
@ -69,20 +70,15 @@
}
.migrations {
.icinga-form { // Reset Icinga Form layout styles
width: unset;
max-width: unset;
fieldset {
max-width: 50em;
}
.migration-form fieldset {
max-width: @max-view-width;
}
.migration-list-control {
padding-bottom: 1em;
> .item-list {
max-width: 50em;
max-width: @max-view-width;
}
}