orleans: fix error highlight on fields with grid (#50882)

This commit is contained in:
Serghei Mihai 2021-02-04 16:50:38 +01:00
parent cb56e33d45
commit 30e7de1b93
1 changed files with 4 additions and 1 deletions

View File

@ -291,14 +291,17 @@ div.buttons {
.widget {
.content {
display: inline-block;
max-width: 100%;
padding: .33em 0;
transition: background 0.3s linear;
&.with-padding {
display: inline-block;
padding: .33em;
}
}
&[class*=grid-] .content.with-padding {
display: block;
}
&.widget-with-error .content {
background-color: $notification_error_color;
}