2019-08-19 16:43:32 +02:00
|
|
|
.field_with_errors {
|
|
|
|
|
label {
|
|
|
|
|
color: $danger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
border-color: $danger;
|
|
|
|
|
}
|
2019-09-19 16:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control:focus {
|
2024-01-23 18:50:42 +01:00
|
|
|
border-color: var(--primary-color);
|
|
|
|
|
box-shadow: 0 0 0 0.25rem var(--primary-color-light);
|
2019-09-19 18:30:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.new_user, .edit_user {
|
|
|
|
|
@extend .card;
|
|
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 360px;
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.deviseLinks {
|
|
|
|
|
@extend .new_user;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
2024-01-23 18:50:42 +01:00
|
|
|
a { color: var(--astuto-black); }
|
2020-07-17 17:51:34 +01:00
|
|
|
}
|
|
|
|
|
|
2022-07-18 10:47:54 +02:00
|
|
|
.formRow {
|
|
|
|
|
@extend .form-row;
|
|
|
|
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formGroup {
|
|
|
|
|
@extend .form-group;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formControl {
|
|
|
|
|
@extend .form-control;
|
|
|
|
|
|
|
|
|
|
&.invalid {
|
|
|
|
|
border-color: red;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-07 18:58:18 +02:00
|
|
|
.switch {
|
|
|
|
|
@extend
|
|
|
|
|
.custom-control-input;
|
2019-08-19 16:43:32 +02:00
|
|
|
}
|