diff --git a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue index b8e589582d..d9bb3935f1 100644 --- a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue @@ -2350,7 +2350,10 @@ defineExpose({ 'active' " class="list-item_primary list-tree_primary" - :style="{ top: 40 * (index + 1) + 'px' }" + :style="{ + top: 40 * (index + 1) + 'px', + paddingLeft: 32 + 16 * (index + 1) + 'px' + }" v-for="(itx, index) in element.treeFieldList.slice(1)" :key="itx.field" @click.stop="notCurrentEle(element, index + 1)" diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index 5c99e834a8..4d2ccb9501 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -677,3 +677,7 @@ strong { margin-bottom: 8px !important; } } + +.ed-month-table td { + padding: 8px 0 !important; +}