Skip to content

Commit 7c66b0f

Browse files
Nikhil-Ashokarfrandse
authored andcommitted
Fixed Styling issues in Table filter (#418)
- Fixed styling issues for table filters - Defect: https://jazz07.rchland.ibm.com:13443/jazz/web/projects/CSSD#action=com.ibm.team.workitem.viewWorkItem&id=703182 Signed-off-by: Nikhil Ashoka <[email protected]>
1 parent 482fcb5 commit 7c66b0f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

src/assets/styles/bmc/custom/_forms.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ div[role='group'] {
135135
color: $gray-900 !important;
136136
}
137137
}
138-
margin-bottom: 1rem !important;
139138
}
140139

141140
.form-check-input:focus ~ .form-check-label::before {

src/components/Global/TableFilter.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
variant="link"
1515
no-caret
1616
right
17+
auto-close="outside"
1718
data-test-id="tableFilter-dropdown-options"
1819
:disabled="isFilterDisabled"
1920
@hide="dropdownVisible = false"
@@ -29,7 +30,7 @@
2930
:key="index"
3031
:label="filter.label"
3132
>
32-
<BFormCheckboxGroup v-model="tags">
33+
<BFormCheckboxGroup v-model="tags" class="margin-btm">
3334
<BFormCheckbox
3435
v-for="value in filter.values"
3536
:key="value"
@@ -117,4 +118,7 @@ export default {
117118
.badge {
118119
margin-right: calc($spacer / 2);
119120
}
121+
.margin-btm {
122+
margin-bottom: 1rem !important;
123+
}
120124
</style>

src/views/ResourceManagement/FieldCoreOverride/FieldCoreOverrideConfiguration.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,8 @@ const submitForm = () => {
136136
.catch(({ message }) => errorToast(message));
137137
};
138138
</script>
139+
<style scoped>
140+
.form-check {
141+
margin-bottom: 1rem !important;
142+
}
143+
</style>

0 commit comments

Comments
 (0)