N°4372 - Fix AttributeText limited dimensions in fullscreen when height/width is defined in the DM

This commit is contained in:
Molkobain
2021-10-11 18:08:52 +02:00
parent 3f24b80043
commit e7e09b5023
3 changed files with 11 additions and 6 deletions

View File

@@ -125,6 +125,11 @@ $ibo-field--enable-bulk--checkbox--margin-left: 8px !default;
.ibo-field--value {
padding: $ibo-field--value--padding-top--is-fullscreen $ibo-field--value--padding-x--is-fullscreen $ibo-field--value--padding-bottom--is-fullscreen $ibo-field--value--padding-x--is-fullscreen;
> * {
height: initial !important; /* !important is necessary to overload the inline style put by the lib */
width: initial !important;
}
}
}
}