34 lines
546 B
SCSS
34 lines
546 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.attachment-error {
|
|
position: relative;
|
|
|
|
&::before {
|
|
box-shadow: inset 2px 0 0 0 var(--border-plain-error);
|
|
height: 2rem; // height of button
|
|
content: "";
|
|
left: -0.75rem;
|
|
position: absolute;
|
|
width: 2px;
|
|
}
|
|
|
|
.attachment-filename {
|
|
color: var(--text-default-error);
|
|
}
|
|
|
|
.fr-error-text {
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.attachment-multiple:not(.fr-downloads-group) {
|
|
ul {
|
|
list-style-type: none;
|
|
padding-inline-start: 0;
|
|
}
|
|
|
|
li {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|