@@ -26,19 +26,19 @@
|
||||
:title="board.title"
|
||||
@close="closeSidebar">
|
||||
|
||||
<AppSidebarTab name="Sharing" icon="icon-shared">
|
||||
<AppSidebarTab :order="0" name="Sharing" icon="icon-shared">
|
||||
<SharingTabSidebard :board="board" />
|
||||
</AppSidebarTab>
|
||||
|
||||
<AppSidebarTab name="Tags" icon="icon-tag">
|
||||
<AppSidebarTab :order="1" name="Tags" icon="icon-tag">
|
||||
<TagsTabSidebard :board="board" />
|
||||
</AppSidebarTab>
|
||||
|
||||
<AppSidebarTab name="Deleted items" icon="icon-delete">
|
||||
<AppSidebarTab :order="2" name="Deleted items" icon="icon-delete">
|
||||
<DeletedTabSidebar :board="board" />
|
||||
</AppSidebarTab>
|
||||
|
||||
<AppSidebarTab name="Timeline" icon="icon-activity">
|
||||
<AppSidebarTab :order="3" name="Timeline" icon="icon-activity">
|
||||
<TimelineTabSidebard :board="board" />
|
||||
</AppSidebarTab>
|
||||
|
||||
|
||||
@@ -100,7 +100,8 @@ export default {
|
||||
}
|
||||
},
|
||||
currentCard() {
|
||||
return this.$route.params.cardId === this.id
|
||||
console.log(this.$route.params)
|
||||
return this.$route.params.cardId == this.id
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@@ -151,10 +152,6 @@ export default {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.current-card {
|
||||
box-shadow: 0 0 3px 0 grey !important;
|
||||
}
|
||||
|
||||
.card {
|
||||
box-shadow: 0 0 3px 0 var(--color-box-shadow);
|
||||
border-radius: 3px;
|
||||
@@ -209,6 +206,10 @@ export default {
|
||||
height: 44px;
|
||||
}
|
||||
}
|
||||
|
||||
&.current-card {
|
||||
box-shadow: 0 0 6px 0 var(--color-box-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
.compact {
|
||||
|
||||
Reference in New Issue
Block a user