Skip to content

Commit

Permalink
Merge pull request #535 from wmde/info-icon-overlap
Browse files Browse the repository at this point in the history
Move info icon for disabled fields to the left
  • Loading branch information
moiikana authored Oct 22, 2024
2 parents 8fc9455 + 11a259d commit b473eea
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/shared/form_elements/RadioFieldTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,18 @@ defineProps<Props>();
</script>

<style scoped lang="scss">
<style lang="scss">
@use '@src/scss/settings/colors';
.radio-field-tooltip {
position: absolute;
display: block;
right: 10px;
left: 14px;
top: 50%;
margin-top: -8px;
height: 16px;
width: 17px;
background: colors.$white;
&-text {
position: absolute;
Expand All @@ -40,7 +41,7 @@ defineProps<Props>();
height: 60px;
width: 280px;
top: -70px;
right: -8px;
left: -8px;
background: colors.$white;
padding: 10px;
border: 1px solid colors.$gray-dark;
Expand All @@ -53,7 +54,7 @@ defineProps<Props>();
content: '';
position: absolute;
bottom: -9px;
right: 6px;
left: 6px;
width: 0;
height: 0;
border-style: solid;
Expand All @@ -65,7 +66,7 @@ defineProps<Props>();
content: '';
position: absolute;
bottom: -7px;
right: 8px;
left: 8px;
width: 0;
height: 0;
border-style: solid;
Expand Down

0 comments on commit b473eea

Please sign in to comment.