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

This commit is contained in:
developer 2026-04-15 17:14:38 +08:00
parent 7d16ae6ede
commit 97132fbe3b
2 changed files with 9 additions and 8 deletions

View File

@ -1,9 +1,8 @@
.form-wrap { .form-wrap {
position: relative; position: relative;
min-height: 350px; height: 380px;
max-height: 600px;
overflow: hidden; overflow: hidden;
transition: height 0.25s ease-out;
.dots { .dots {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
@ -17,12 +16,13 @@
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
transition: min-height 0.15s ease-out; max-height:380px;
overflow:hidden;
transition: max-height .25s ease-out;
} }
.form-wrap:hover { .form-wrap:hover {
overflow: visible; overflow: visible;
.dots { .dots {
display: none; display: none;
} }
@ -32,8 +32,9 @@
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
min-height: 100%; height: auto;
transition: min-height 0.25s ease-in; max-height: 900px;
transition: max-height .25s ease-in;
} }
} }

View File

@ -47,7 +47,7 @@ class="btn list-group-item list-group-item-action p-3 bg-white rounded border bo
</div> </div>
</div> </div>
<div class="form-wrap col-12 col-lg-6"> <div class="form-wrap col-12 col-lg-6">
<div class="form-wrap__inner position-relative p-2 px-sm-4 py-sm-3 bg-primary border rounded-3 mx-auto" style=""> <div class="form-wrap__inner p-2 px-sm-4 py-sm-3 bg-primary border rounded-3 mx-auto" style="">
<div class="h4 pb-2 mb-2 fw-bold d-flex flex-column"> <div class="h4 pb-2 mb-2 fw-bold d-flex flex-column">
<small>Добавить клиента</small> <small>Добавить клиента</small>
</div> </div>