mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-02 13:03:35 +00:00
update styles for convo list
This commit is contained in:
@@ -99,7 +99,7 @@
|
||||
<div
|
||||
v-if="!conversationStore.conversations.errorMessage"
|
||||
key="list"
|
||||
class="divide-y divide-gray-200"
|
||||
class="divide-y divide-gray-200 dark:divide-gray-700"
|
||||
>
|
||||
<ConversationListItem
|
||||
v-for="conversation in conversationStore.conversationsList"
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
<template>
|
||||
<div
|
||||
class="group relative p-4 transition-all duration-200 ease-in-out cursor-pointer border-b last:border-b-0 hover:shadow-sm border-gray-200 dark:border-gray-700 hover:bg-accent/20 dark:hover:bg-accent/30"
|
||||
class="group relative p-4 transition-all duration-200 ease-in-out cursor-pointer hover:bg-accent/20 dark:hover:bg-accent/30"
|
||||
:class="{
|
||||
'bg-accent/30 dark:bg-accent border-l-4 border-accent-500 dark:border-accent-400':
|
||||
conversation.uuid === currentConversation?.uuid
|
||||
'bg-accent/30 dark:bg-accent border-l-2': conversation.uuid === currentConversation?.uuid
|
||||
}"
|
||||
@click="navigateToConversation(conversation.uuid)"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user