aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.vue
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2018-04-10 00:28:24 +0300
committershpuld <shp@cock.li>2018-04-10 00:28:24 +0300
commit8835c98529809033993b190847989f11b318cf97 (patch)
tree9ee82d3bc3a14815288a95425a22abebc8533250 /src/components/notifications/notifications.vue
parentc214197cee192d9ae511d145d8e28cef8ae9a0d1 (diff)
parent716e37d95cd463ede4a5fbe91e7170515719a0fe (diff)
Merge hj's css overhaul and fix conflicts
Diffstat (limited to 'src/components/notifications/notifications.vue')
-rw-r--r--src/components/notifications/notifications.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue
index 71fd2604..f01234d3 100644
--- a/src/components/notifications/notifications.vue
+++ b/src/components/notifications/notifications.vue
@@ -1,12 +1,12 @@
<template>
<div class="notifications">
- <div class="panel panel-default base00-background">
- <div class="panel-heading base02-background base04">
+ <div class="panel panel-default">
+ <div class="panel-heading">
<span class="unseen-count" v-if="unseenCount">{{unseenCount}}</span>
{{$t('notifications.notifications')}}
- <button v-if="unseenCount" @click.prevent="markAsSeen" class="base04 base02-background read-button">{{$t('notifications.read')}}</button>
+ <button v-if="unseenCount" @click.prevent="markAsSeen" class="read-button">{{$t('notifications.read')}}</button>
</div>
- <div class="panel-body base03-border">
+ <div class="panel-body">
<div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'>
<notification :notification="notification"></notification>
</div>