Skip to content

Commit

Permalink
FOUR-13192 and FOUR-13193: Fix tooltip does not have a padding / Acco…
Browse files Browse the repository at this point in the history
…rdion title does not have bold style
  • Loading branch information
pmoskrojas committed Jan 18, 2024
1 parent ce44df2 commit d02246f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/components/vue-form-builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"
@click="toggleCollapse(index)"
>
{{ $t(name) }}
<strong>{{ $t(name) }}</strong>
<b-icon
:icon="isCollapsed(index) ? 'chevron-down' : 'chevron-up'"
class="float-right"
Expand All @@ -69,7 +69,8 @@
:key="elementIndex"
v-b-popover.hover.right="{
content: $t(element.popoverContent),
customClass: 'custom-popover'
customClass: 'custom-popover',
boundaryPadding: 16
}"
:boundary="'viewport'"
:data-cy="`controls-${element.component}`"
Expand Down Expand Up @@ -1390,10 +1391,14 @@ export default {
};
</script>

<style>
<style scoped>
.custom-popover {
margin-right: -400px;
padding: 16px;
}
</style>

<style>
.gray-text {
color: gray;
}
Expand Down

0 comments on commit d02246f

Please sign in to comment.