Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-21 09:13:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-21 09:13:35 +0300
commit935dea5995316a570bf9204d00f9bf30466cb2c9 (patch)
treef134f1676756893afc961a6ce186bd4f4782655a /app/assets/javascripts/repository
parent80ea1bd234f62dfd328e744ef6fb79447e6dfdaa (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/repository')
-rw-r--r--app/assets/javascripts/repository/components/table/row.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/repository/components/table/row.vue b/app/assets/javascripts/repository/components/table/row.vue
index c8cd64b5311..f3c5ace75fc 100644
--- a/app/assets/javascripts/repository/components/table/row.vue
+++ b/app/assets/javascripts/repository/components/table/row.vue
@@ -260,19 +260,19 @@ export default {
class="ml-1"
/>
</td>
- <td class="d-none d-sm-table-cell tree-commit cursor-default">
+ <td class="d-none d-sm-table-cell tree-commit cursor-default gl-text-secondary">
<gl-link
v-if="commitData"
v-safe-html:[$options.safeHtmlConfig]="commitData.titleHtml"
:href="commitData.commitPath"
:title="commitData.message"
- class="str-truncated-100 tree-commit-link"
+ class="str-truncated-100 tree-commit-link gl-text-secondary"
/>
<gl-intersection-observer @appear="rowAppeared" @disappear="rowDisappeared">
<gl-skeleton-loader v-if="showSkeletonLoader" :lines="1" />
</gl-intersection-observer>
</td>
- <td class="tree-time-ago text-right cursor-default">
+ <td class="tree-time-ago text-right cursor-default gl-text-secondary">
<timeago-tooltip v-if="commitData" :time="commitData.committedDate" />
<gl-skeleton-loader v-if="showSkeletonLoader" :lines="1" />
</td>