summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2019-01-09 09:20:20 +0000
committerFilipa Lacerda <filipa@gitlab.com>2019-01-09 09:20:20 +0000
commitace9222943e06e59b76f0bcb7649531e921a7dc9 (patch)
treec9d961fa80dd849b27c4141ecf9b11efcd2a9fef
parentc8ff16642d447f4123d9a83208853108398897ef (diff)
downloadgitlab-ce-ace9222943e06e59b76f0bcb7649531e921a7dc9.tar.gz
Use monospace font for registry table tag id and tag name
-rw-r--r--app/assets/javascripts/registry/components/table_registry.vue6
-rw-r--r--changelogs/unreleased/monospace-registry-tags.yml5
2 files changed, 9 insertions, 2 deletions
diff --git a/app/assets/javascripts/registry/components/table_registry.vue b/app/assets/javascripts/registry/components/table_registry.vue
index 78c7671856a..2c19973a114 100644
--- a/app/assets/javascripts/registry/components/table_registry.vue
+++ b/app/assets/javascripts/registry/components/table_registry.vue
@@ -70,7 +70,7 @@ export default {
</thead>
<tbody>
<tr v-for="item in repo.list" :key="item.tag">
- <td>
+ <td class="monospace">
{{ item.tag }}
<clipboard-button
v-if="item.location"
@@ -80,7 +80,9 @@ export default {
/>
</td>
<td>
- <span v-gl-tooltip.bottom :title="item.revision">{{ item.shortRevision }}</span>
+ <span v-gl-tooltip.bottom class="monospace" :title="item.revision">{{
+ item.shortRevision
+ }}</span>
</td>
<td>
{{ formatSize(item.size) }}
diff --git a/changelogs/unreleased/monospace-registry-tags.yml b/changelogs/unreleased/monospace-registry-tags.yml
new file mode 100644
index 00000000000..b5992707d8c
--- /dev/null
+++ b/changelogs/unreleased/monospace-registry-tags.yml
@@ -0,0 +1,5 @@
+---
+title: Use monospace font for registry table tag id and tag name
+merge_request: 24205
+author:
+type: other