fix: pvp tooltip
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
4ef7b0e17c
commit
4fdf2bacf8
|
@ -256,6 +256,14 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QBadge>
|
</QBadge>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
<template #body-cell-pvp="{ value }">
|
||||||
|
<QTd @click.stop
|
||||||
|
><span> {{ value }}</span>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('lastEntries.grouping') }}/{{ t('lastEntries.packing') }}
|
||||||
|
</QTooltip></QTd
|
||||||
|
>
|
||||||
|
</template>
|
||||||
<template #body-cell-grouping="{ row }">
|
<template #body-cell-grouping="{ row }">
|
||||||
<QTd @click.stop>
|
<QTd @click.stop>
|
||||||
<QBadge class="center-content" rounded color="black">
|
<QBadge class="center-content" rounded color="black">
|
||||||
|
@ -288,9 +296,14 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.q-badge--rounded {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
.center-content {
|
.center-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
max-width: max-content;
|
max-width: max-content;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
padding: 0 11px;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue