обновлена форма добавления клиентов: сделан выбор нескольких жк

This commit is contained in:
developer 2026-04-15 16:05:17 +08:00
parent f582d21c99
commit aeb2819fe8
2 changed files with 34 additions and 7 deletions

View File

@ -1,10 +1,29 @@
.clients-form__container {
.form-wrap {
position: relative;
min-height: 350px;
max-height: 600px;
overflow: hidden;
.dots {
position: absolute;
bottom: 0;
mask-image: linear-gradient(to bottom, transparent, black);
}
}
.form-wrap__inner {
position: absolute;
top: 0;
left: 0;
right: 0;
transition: min-height 0.15s ease-out;
}
.form-wrap:hover {
overflow: visible;
.dots {
display: none;
}
.form-wrap__inner {
@ -13,9 +32,12 @@
left: 0;
right: 0;
min-height: 100%;
transition: min-height 0.25s ease-in;
}
}
.clients-form__container {
.form-loading {
filter: blur(2px);
}

View File

@ -53,6 +53,11 @@ class="btn list-group-item list-group-item-action p-3 bg-white rounded border bo
</div>
<livewire:ClientCreator />
</div>
<div class="dots bg-primary p-1 w-100">
<div class="text-center" style="margin-bottom:-9px">
<i class="bi bi-three-dots"></i>
</div>
</div>
</div>
</div>
@endif