Commit d9889d8f authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Merge branch '228752-mr-popovers-hard-to-read-in-dark-mode' into 'master'

Fix MR Popovers text in dark mode

See merge request gitlab-org/gitlab!75169
parents 83af30a6 264b713a
...@@ -100,13 +100,13 @@ export default { ...@@ -100,13 +100,13 @@ export default {
<div :class="`issuable-status-box status-box ${statusBoxClass}`"> <div :class="`issuable-status-box status-box ${statusBoxClass}`">
{{ stateHumanName }} {{ stateHumanName }}
</div> </div>
<span class="text-secondary">Opened <time v-text="formattedTime"></time></span> <span class="gl-text-secondary">Opened <time v-text="formattedTime"></time></span>
</div> </div>
<ci-icon v-if="detailedStatus" :status="detailedStatus" /> <ci-icon v-if="detailedStatus" :status="detailedStatus" />
</div> </div>
<h5 v-if="!$apollo.queries.mergeRequest.loading" class="my-2">{{ title }}</h5> <h5 v-if="!$apollo.queries.mergeRequest.loading" class="my-2">{{ title }}</h5>
<!-- eslint-disable @gitlab/vue-require-i18n-strings --> <!-- eslint-disable @gitlab/vue-require-i18n-strings -->
<div class="text-secondary"> <div class="gl-text-secondary">
{{ `${projectPath}!${mergeRequestIID}` }} {{ `${projectPath}!${mergeRequestIID}` }}
</div> </div>
<!-- eslint-enable @gitlab/vue-require-i18n-strings --> <!-- eslint-enable @gitlab/vue-require-i18n-strings -->
......
...@@ -26,7 +26,7 @@ exports[`MR Popover loaded state matches the snapshot 1`] = ` ...@@ -26,7 +26,7 @@ exports[`MR Popover loaded state matches the snapshot 1`] = `
</div> </div>
<span <span
class="text-secondary" class="gl-text-secondary"
> >
Opened Opened
<time> <time>
...@@ -49,7 +49,7 @@ exports[`MR Popover loaded state matches the snapshot 1`] = ` ...@@ -49,7 +49,7 @@ exports[`MR Popover loaded state matches the snapshot 1`] = `
</h5> </h5>
<div <div
class="text-secondary" class="gl-text-secondary"
> >
foo/bar!1 foo/bar!1
...@@ -80,7 +80,7 @@ exports[`MR Popover shows skeleton-loader while apollo is loading 1`] = ` ...@@ -80,7 +80,7 @@ exports[`MR Popover shows skeleton-loader while apollo is loading 1`] = `
<!----> <!---->
<div <div
class="text-secondary" class="gl-text-secondary"
> >
foo/bar!1 foo/bar!1
......
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