1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

chore: css clean up (#2988)

This commit is contained in:
Amir Raminfar
2024-05-27 13:43:22 -07:00
committed by GitHub
parent 4dd99c209c
commit a65f8a2c3a
4 changed files with 26 additions and 40 deletions

View File

@@ -44,19 +44,20 @@
</summary>
<ul>
<li v-for="item in containers" :class="item.state" :key="item.id">
<popup>
<Popup>
<router-link
:to="{ name: 'container-id', params: { id: item.id } }"
active-class="active-primary"
@click.alt.stop.prevent="pinnedStore.pinContainer(item)"
:title="item.name"
class="group auto-cols-[auto_max-content_max-content]"
>
<div class="truncate">
{{ item.name }}<span class="font-light opacity-70" v-if="item.isSwarm">.{{ item.swarmId }}</span>
</div>
<ContainerHealth :health="item.health" />
<span
class="pin"
class="hidden hover:text-secondary group-hover:inline-block"
@click.stop.prevent="pinnedStore.pinContainer(item)"
v-show="!pinnedStore.isPinned(item)"
:title="$t('tooltip.pin-column')"
@@ -67,7 +68,7 @@
<template #content>
<ContainerPopup :container="item" />
</template>
</popup>
</Popup>
</li>
</ul>
</details>
@@ -168,22 +169,7 @@ const menuItems = computed(() => {
.menu {
@apply text-[0.95rem];
}
.containers a {
@apply auto-cols-[auto_max-content_max-content];
.pin {
display: none;
&:hover {
@apply text-secondary;
}
}
&:hover {
.pin {
display: inline-block;
}
}
}
li.exited {
@apply opacity-50;
}