2023-04-14 16:38:08 +02:00
|
|
|
.c__field {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
width: var(--c--components--forms-field--width);
|
|
|
|
|
color: var(--c--components--forms-field--color);
|
|
|
|
|
box-sizing: border-box;
|
2023-05-25 15:41:30 +02:00
|
|
|
min-width: 0;
|
2023-04-14 16:38:08 +02:00
|
|
|
|
|
|
|
|
&__footer {
|
|
|
|
|
font-size: var(--c--components--forms-field--font-size);
|
|
|
|
|
padding: 0.25rem calc(1rem + 2px) 0 calc(1rem + 2px);
|
2023-08-29 17:37:06 +02:00
|
|
|
|
|
|
|
|
&__top {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0.20rem 0 0 0;
|
|
|
|
|
padding: 0 0 0 1rem;
|
|
|
|
|
line-height: 1rem;
|
|
|
|
|
}
|
2023-04-14 16:38:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__text, &__text-right {
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--error {
|
|
|
|
|
color: var(--c--theme--colors--danger-500);
|
2023-05-24 14:26:49 +02:00
|
|
|
|
|
|
|
|
label, .labelled-box label {
|
|
|
|
|
color: var(--c--theme--colors--danger-500);
|
|
|
|
|
}
|
2023-04-14 16:38:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--success {
|
2023-05-24 15:32:48 +02:00
|
|
|
color: var(--c--theme--colors--success-600);
|
|
|
|
|
|
|
|
|
|
.c__field__text {
|
|
|
|
|
color: var(--c--theme--colors--success-800);
|
|
|
|
|
}
|
2023-04-14 16:38:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--full-width {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2023-04-20 14:56:39 +02:00
|
|
|
|
|
|
|
|
&--compact {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2023-06-12 16:51:00 +02:00
|
|
|
}
|