1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-27 16:52:21 +01:00

110 lines
2.4 KiB
SCSS
Raw Normal View History

2022-04-05 19:09:59 +02:00
.form-item {
2022-02-03 15:32:02 +01:00
width: 100%;
margin-bottom: 1.6rem;
&-header {
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 0.8rem;
2022-02-04 15:09:38 +01:00
p {
@include text-sm;
margin: 0;
}
2022-02-03 15:32:02 +01:00
}
&.is-required &-header p::after {
content: "*";
margin-left: 0.5ch;
color: var(--error);
}
&-field {
2022-04-05 19:31:13 +02:00
min-height: 4rem;
2022-02-03 15:32:02 +01:00
display: grid;
2022-04-05 19:09:59 +02:00
grid-template-areas: "icon field addon";
2022-04-05 19:31:13 +02:00
grid-template-columns: min-content minmax(0, 1fr) min-content;
2022-02-03 15:32:02 +01:00
border: 1px solid var(--gray-soft-dark);
2022-02-04 15:09:38 +01:00
border-radius: var(--border-radius);
2022-02-03 15:32:02 +01:00
transition: border-color ease-in-out 0.15s;
.icon,
.addon {
width: 4rem;
display: flex;
justify-content: center;
align-items: center;
color: var(--gray-hard-light);
background-color: var(--gray-soft);
}
.icon {
grid-area: icon;
border-right: 1px solid var(--gray-soft-dark);
}
2022-04-05 19:09:59 +02:00
& > input {
grid-area: field;
2022-02-03 15:32:02 +01:00
border: none;
2022-02-04 15:09:38 +01:00
border-radius: var(--border-radius);
2022-02-03 15:32:02 +01:00
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .08);
padding: 0 0.8rem;
color: var(--gray-hard-darkest);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2022-04-05 19:09:59 +02:00
&:focus {
outline: none;
box-shadow: 0 0 0 2px var(--information);
}
}
// override React-select component's style
.rs {
grid-area: field;
&__control {
border: none;
border-radius: var(--border-radius);
&--is-focused {
box-shadow: 0 0 0 2px var(--information);
}
}
&__menu {
margin-top: 1px;
border: 1px solid var(--gray-soft-dark);
box-shadow: var(--shadow);
}
&__option {
color: #000000;
&:hover {
background-color: var(--information-lightest);
}
&--is-selected,
&--is-selected:hover {
background-color: var(--information-light);
}
}
2022-02-03 15:32:02 +01:00
}
2022-04-05 19:09:59 +02:00
2022-02-03 15:32:02 +01:00
.addon {
grid-area: addon;
border-left: 1px solid var(--gray-soft-dark);
}
}
&.is-incorrect &-field {
border-color: var(--error);
.icon {
color: var(--error);
border-color: var(--error);
background-color: var(--error-lightest);
}
}
&.is-disabled &-field input,
&.is-readOnly &-field input {
background-color: var(--gray-soft-light);
}
&-error {
margin-top: 0.4rem;
color: var(--error);
}
2022-04-05 19:09:59 +02:00
}