summaryrefslogtreecommitdiffstats
path: root/src/components/Properties
diff options
context:
space:
mode:
authorAndreas Demmelbauer <git@notice.at>2019-04-09 10:41:32 -0700
committerAndreas Demmelbauer <git@notice.at>2019-04-09 10:41:32 -0700
commitef4eac61f7536e770cd72a62783382854ae299e0 (patch)
treeb93edba93513952e6f4dea0f5a6280f5cb24a99e /src/components/Properties
parent6a9025c57dfd738d3d25651853bc38e15db90f1c (diff)
fixing displaced property title if tooltip icon shown
Diffstat (limited to 'src/components/Properties')
-rw-r--r--src/components/Properties/PropertyTitle.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Properties/PropertyTitle.vue b/src/components/Properties/PropertyTitle.vue
index 44a73a22..56d64b8f 100644
--- a/src/components/Properties/PropertyTitle.vue
+++ b/src/components/Properties/PropertyTitle.vue
@@ -23,11 +23,11 @@
<template>
<h3 class="property__title property__row">
<div :class="icon" class="property__label property__title--icon" />
- <span class="property__value">
- {{ readableName }}
+ <span class="property__value property__title--right">
+ <div>{{ readableName }}</div>
+ <!-- display tooltip with hint if available -->
+ <div v-if="info" v-tooltip.auto="info" class="property__title--icon-details icon-details" />
</span>
- <!-- display tooltip with hint if available -->
- <div v-if="info" v-tooltip.auto="info" class="property__title--icon-details icon-details" />
</h3>
</template>