style(测试用例): 修复测试用例导出已选字段超过默认高度展示不全无法删除和拖动字段
This commit is contained in:
parent
bc0bbcdc32
commit
8b6dff99b1
|
@ -143,7 +143,7 @@
|
|||
</div>
|
||||
<MsButton @click="handleReset">{{ t('system.orgTemplate.clear') }}</MsButton>
|
||||
</div>
|
||||
<div class="p-[16px]">
|
||||
<div class="selected-panel p-[16px]">
|
||||
<VueDraggable v-model="selectedList" ghost-class="ghost">
|
||||
<div
|
||||
v-for="element in selectedList"
|
||||
|
@ -489,7 +489,7 @@
|
|||
display: flex;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
height: calc(100vh - 112px);
|
||||
border: 1px solid var(--color-text-n8);
|
||||
// 可选字段
|
||||
.optional-field {
|
||||
|
@ -504,6 +504,11 @@
|
|||
background: var(--color-text-n9);
|
||||
@apply flex flex-row items-center justify-between;
|
||||
}
|
||||
.selected-panel {
|
||||
height: calc(100vh - 152px);
|
||||
@apply overflow-y-auto;
|
||||
.ms-scroll-bar();
|
||||
}
|
||||
}
|
||||
}
|
||||
.ghost {
|
||||
|
|
Loading…
Reference in New Issue