chore: Remove older UI (#11720)

This commit is contained in:
Sivin Varghese
2025-07-01 09:43:44 +05:30
committed by GitHub
parent 58da92a252
commit 24ea968b00
369 changed files with 974 additions and 9363 deletions
@@ -154,7 +154,7 @@ export default {
<template>
<li
v-if="shouldShowSuggestions"
class="label-suggestion right"
class="label-suggestion right list-none"
@mouseover="isHovered = true"
@mouseleave="isHovered = false"
>
@@ -180,9 +180,7 @@ export default {
<woot-label
variant="dashed"
v-bind="label"
:bg-color="
selectedLabels.includes(label.title) ? 'var(--w-100)' : ''
"
:bg-color="selectedLabels.includes(label.title) ? '#2781F6' : ''"
/>
</button>
<NextButton
@@ -253,17 +251,14 @@ export default {
.label-suggestion {
flex-direction: row;
justify-content: flex-end;
margin-top: var(--space-normal);
margin-top: 1rem;
.label-suggestion--container {
max-width: 300px;
}
.label-suggestion--options {
text-align: right;
display: flex;
align-items: center;
gap: var(--space-micro);
@apply gap-0.5 text-end flex items-center;
button.label-suggestion--option {
.label {
@@ -274,14 +269,12 @@ export default {
}
.chatwoot-ai-icon {
height: var(--font-size-mini);
width: var(--font-size-mini);
height: 0.75rem;
width: 0.75rem;
}
.label-suggestion--title {
color: var(--b-600);
margin-top: var(--space-micro);
font-size: var(--font-size-micro);
@apply text-n-slate-11 mt-0.5 text-xxs;
}
}
</style>