Skip to content

Commit

Permalink
Task#2942 icon added group
Browse files Browse the repository at this point in the history
  • Loading branch information
smarinier authored and zak39 committed Jun 14, 2024
1 parent 9e4f5f8 commit def985c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
6 changes: 6 additions & 0 deletions css/workspace-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,9 @@
.workspace-sidebar .icon-collapse {
visibility: visible !important;
}

.icon-added-group, .icon-added-group-dark {
background-image: url('../img/added_group_black.svg');
min-width: 42px;
min-height: 42px;
}
9 changes: 9 additions & 0 deletions img/added_group_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/GroupDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div>
<div class="header">
<div class="group-name">
<div class="icon-group" />
<div :class="isAddedGroup ? 'icon-added-group' : 'icon-group'" />
<span class="titles-for-space">
{{ $store.getters.groupName($route.params.space, $route.params.group) }}
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/GroupMenuItem.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<NcAppNavigationItem
icon="icon-group"
:icon="addedGroup ? 'icon-added-group' : 'icon-group'"
:to="{path: `/group/${spaceName}/${group.gid}`}"
:title="group.displayName">
<NcCounterBubble slot="counter" class="user-counter">
Expand Down

0 comments on commit def985c

Please sign in to comment.