CSS: Remove obsolete `icinga-form` styles & store max view width in a variable
This commit is contained in:
parent
6a4314120b
commit
3f372330b3
|
@ -1,6 +1,7 @@
|
||||||
// Style
|
// Style
|
||||||
|
|
||||||
@visual-width: 1.5em;
|
@visual-width: 1.5em;
|
||||||
|
@max-view-width: 50em;
|
||||||
|
|
||||||
.migration-state-banner, .change-database-user-description {
|
.migration-state-banner, .change-database-user-description {
|
||||||
.rounded-corners();
|
.rounded-corners();
|
||||||
|
@ -69,20 +70,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.migrations {
|
.migrations {
|
||||||
.icinga-form { // Reset Icinga Form layout styles
|
.migration-form fieldset {
|
||||||
width: unset;
|
max-width: @max-view-width;
|
||||||
max-width: unset;
|
|
||||||
|
|
||||||
fieldset {
|
|
||||||
max-width: 50em;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.migration-list-control {
|
.migration-list-control {
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
|
|
||||||
> .item-list {
|
> .item-list {
|
||||||
max-width: 50em;
|
max-width: @max-view-width;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue