Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small ui fixes and reply button replies again #338

Merged
merged 6 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions frontend/src/components/messages/MessagesTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<v-col cols="12">
<AppButton size="small" class="messages-button" @click="toggleNewRequestDialog()">
<v-icon left>mdi-email-plus-outline</v-icon>
New message
<span>New message</span>
vietle-cgi marked this conversation as resolved.
Show resolved Hide resolved
</AppButton>
<AppButton size="small" class="messages-button mx-1" :primary="false" @click="toggleMarkUnreadButtonInMessageTable()">
<v-icon left>mdi-email-outline</v-icon>
Mark unread
<span>Mark unread</span>
</AppButton>
<AppButton size="small" class="messages-button" :primary="false" @click="toggleMarkReadButton()">
<v-icon left>mdi-email-open-outline</v-icon>
Mark read
<span>Mark read</span>
</AppButton>
</v-col>
</v-row>
Expand Down Expand Up @@ -91,4 +91,9 @@ export default {
.messages-button {
display: inline-block;
}

.messages-button:focus {
vietle-cgi marked this conversation as resolved.
Show resolved Hide resolved
outline: 0px !important;
outline-offset: none !important;
}
</style>
8 changes: 4 additions & 4 deletions frontend/src/components/messages/RequestConversations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<span class="subject-header">Subject: {{ assistanceRequest.subject }}</span>
</v-col>
<v-col cols="5" lg="3" class="d-flex flex-column align-end pa-0">
<AppButton v-if="assistanceRequest.isRead" size="small" :primary="false" class="conversations-button" @click="$emit('toggleMarkUnreadButtonInConversationThread')">
<AppButton v-if="assistanceRequest.isRead" size="small" min-width="155px" :primary="false" class="conversations-button" @click="$emit('toggleMarkUnreadButtonInConversationThread')">
<v-icon left>mdi-email-outline</v-icon>
Mark unread
<span>Mark unread</span>
</AppButton>
<v-tooltip
:disabled="!showTooltip"
Expand All @@ -17,9 +17,9 @@
text="Your request is still in the queue. If this is an urgent request, you can call the program at 1-888-338-6622 (Option 7).">
<template #activator="{ props }">
<div v-bind="props">
<AppButton class="reply-button my-1" :disabled="!isReplyButtonEnabled" size="small">
<AppButton class="reply-button my-1" :disabled="!isReplyButtonEnabled" size="small" min-width="155px" @click="toggleReplyRequestDialog">
<v-icon left>mdi-reply</v-icon>
Reply
<span>Reply</span>
</AppButton>
</div>
</template>
Expand Down
Loading