!3531 fix(#I5ZZGK): the search panel animation is not smooth on Table component

* fix: 修复 Table 组件搜索栏折叠收起卡顿问题
This commit is contained in:
Argo 2022-11-15 07:35:47 +00:00
parent 73a5823278
commit 1a9d2f2e7d
2 changed files with 11 additions and 1 deletions

View File

@ -15,6 +15,7 @@
--bb-table-columnlist-max-height: var(--bb-dropdown-max-height);
--bs-table-striped-bg: rgba(0,0,0,.05);
--bs-table-hover-bg: rgba(0,0,0,.075);
--bb-table-search-body-margin: 1rem;
}
.table-container .table:not(.table-excel) .switch {
@ -619,6 +620,15 @@ form .table .table-cell > textarea {
padding: .275rem .5rem;
}
.table-search .card-body {
--bs-card-spacer-x: 0;
--bs-card-spacer-y: 0;
}
.table-search .card-body > .groupbox {
margin: var(--bb-table-search-body-margin);
}
.table-search-collapse {
flex: 1;
display: flex;

File diff suppressed because one or more lines are too long