N°4408 Fix inputs flickering when widgets are loading

This commit is contained in:
Stephen Abello
2021-11-04 10:49:17 +01:00
parent fe82f54066
commit aba0d4144c
8 changed files with 17 additions and 4 deletions

View File

@@ -9,6 +9,7 @@
@import "input-datetime";
@import "input-duration";
@import "input-image";
@import "input-richtext";
@import "input-select";
@import "input-select-icon";
@import "input-string";

View File

@@ -0,0 +1,4 @@
.ibo-input-richtext-placeholder{
height: 200px;
width: 100%;
}

View File

@@ -218,3 +218,9 @@ $ibo-input-select--autocomplete-item-image--border: 1px solid $ibo-color-grey-60
.ibo-input-select--autocomplete-item-txt {
@extend %ibo-text-truncated-with-ellipsis;
}
/* Use "select" in order to avoid stylizing selectize wrapper that copy select classes*/
select.ibo-input-select-placeholder{
@extend .ibo-input;
@extend .ibo-input-select;
}