Commit 610d9235 authored by Mike Greiling's avatar Mike Greiling

Merge branch '35094-mr-approver-tooltip-color' into 'master'

Resolve "Bug: tooltip in MR approvers settings wrong color"

Closes #35094

See merge request gitlab-org/gitlab!20287
parents 30c68de4 4e693d66
---
title: Fixes MR approvers tooltip wrong color
merge_request: 20287
author: Dheeraj Joshi
type: fixed
<script> <script>
import { GlLink, GlPopover } from '@gitlab/ui'; import { GlLink, GlPopover, GlIcon } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
export default { export default {
name: 'ApprovalCheckPopover', name: 'ApprovalCheckPopover',
components: { components: {
GlLink, GlLink,
GlPopover, GlPopover,
Icon, GlIcon,
}, },
props: { props: {
documentationLink: { documentationLink: {
...@@ -35,10 +34,10 @@ export default { ...@@ -35,10 +34,10 @@ export default {
<template> <template>
<span class="vertical-align-middle text-muted js-help"> <span class="vertical-align-middle text-muted js-help">
<icon <gl-icon
ref="reportInfo" ref="reportInfo"
name="question" name="question"
css-classes="text-info" class="text-info"
:aria-label="__('help')" :aria-label="__('help')"
:size="14" :size="14"
/> />
...@@ -51,7 +50,7 @@ export default { ...@@ -51,7 +50,7 @@ export default {
<div class="mb-2">{{ text }}</div> <div class="mb-2">{{ text }}</div>
<gl-link v-if="documentationLink" target="_blank" :href="documentationLink"> <gl-link v-if="documentationLink" target="_blank" :href="documentationLink">
<span class="vertical-align-middle">{{ documentationText }}</span> <span class="vertical-align-middle">{{ documentationText }}</span>
<icon name="external-link" class="vertical-align-middle" /> <gl-icon name="external-link" class="vertical-align-middle" />
</gl-link> </gl-link>
</gl-popover> </gl-popover>
</span> </span>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment