-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: weskubo-cgi <[email protected]>
- Loading branch information
1 parent
0361a6a
commit c4c54e7
Showing
8 changed files
with
105 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<template>Messages</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<template>Notifications</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ export default { | |
} | ||
.menu-icon { | ||
color: #003366; | ||
margin-right: 15px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<template> | ||
<v-card class="messaging-card" variant="flat"> | ||
<v-tabs v-model="tab" bg-color="none" class="messaging-tabs" density="compact"> | ||
<v-tab class="messaging-tab" selected-class="messaging-tab-selected" value="one">Notifications</v-tab> | ||
<v-tab class="messaging-tab" selected-class="messaging-tab-selected" value="two">Messages</v-tab> | ||
<v-tab class="messaging-tab" selected-class="messaging-tab-selected" value="three">Archive</v-tab> | ||
</v-tabs> | ||
<v-card-text class="messaging-card-text"> | ||
<v-window v-model="tab" direction="vertical" class="messaging-window"> | ||
<v-window-item value="one" class="messaging-window-item"><NotificationsTab /></v-window-item> | ||
<v-window-item value="two" class="messaging-window-item"><MessagesTab /></v-window-item> | ||
<v-window-item value="three" class="messaging-window-item">Three</v-window-item> | ||
</v-window> | ||
</v-card-text> | ||
</v-card> | ||
</template> | ||
|
||
<script> | ||
import MessagesTab from '@/components/messages/MessagesTab.vue' | ||
import NotificationsTab from '@/components/notifications/NotificationsTab.vue' | ||
export default { | ||
components: { MessagesTab, NotificationsTab }, | ||
data: () => ({ | ||
tab: null, | ||
}), | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.messaging-card { | ||
max-width: 1000px; | ||
} | ||
.messaging-tab { | ||
border: 2px solid #6699cc; | ||
border-bottom: 0px; | ||
border-top-left-radius: 10px; | ||
border-top-right-radius: 10px; | ||
border-bottom-left-radius: 0px; | ||
border-bottom-right-radius: 0px; | ||
color: #336699; | ||
font-weight: bold; | ||
} | ||
.messaging-tab-selected { | ||
background-color: #6699cc; | ||
color: white; | ||
} | ||
.messaging-card-text { | ||
padding: 0px; | ||
} | ||
.messaging-window { | ||
border: 2px solid #6699cc; | ||
border-top-left-radius: 0px; | ||
border-top-right-radius: 10px; | ||
border-bottom-left-radius: 10px; | ||
border-bottom-right-radius: 10px; | ||
min-height: 300px; | ||
box-shadow: | ||
0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), | ||
0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), | ||
0px 1px 3px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12)); | ||
margin-bottom: 20px; | ||
} | ||
.messaging-window-item { | ||
padding: 10px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<template> | ||
<div>Resources</div> | ||
</template> |