Skip to content

Commit

Permalink
Fix navigation icon bullet
Browse files Browse the repository at this point in the history
use CheckboxBlankCircle as icon within the Action for icon bullet instead of AppNavigationIconBullet and AppNavigationDisabledCalendarIconBullet.

AppNavigationDisabledCalendarIconBullet is not needed anymore.

Signed-off-by: julia.kirschenheuter <[email protected]>

!Fixup tabulation

Signed-off-by: julia.kirschenheuter <[email protected]>
  • Loading branch information
JuliaKirschenheuter authored and backportbot[bot] committed Feb 23, 2022
1 parent ff320e7 commit 083f45d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 65 deletions.
14 changes: 0 additions & 14 deletions css/app-navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -187,20 +187,6 @@
}
}

.app-navigation-entry__icon-bullet-disabled {
display: block;
// there is 2 margins
padding: 15px;
div {
border: 1px solid var(--color-border-dark);
width: 15px;
height: 15px;
cursor: pointer;
transition: background 100ms ease-in-out;
border-radius: 50%;
}
}

.app-navigation-entry__utils {
.action-checkbox__label {
padding-right: 0 !important;
Expand Down

This file was deleted.

28 changes: 14 additions & 14 deletions src/components/AppNavigation/CalendarList/CalendarListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,18 @@
:title="calendar.displayName || $t('calendar', 'Untitled calendar')"
:class="{deleted: !!deleteTimeout, disabled: !calendar.enabled, 'open-sharing': shareMenuOpen}"
@click.prevent.stop="toggleEnabled">
<AppNavigationIconBullet
v-if="calendar.enabled"
slot="icon"
:color="calendar.color"
@click.prevent.stop="toggleEnabled" />
<AppNavigationDisabledCalendarIconBullet
v-if="!calendar.enabled"
slot="icon"
@click.prevent.stop="toggleEnabled" />
<template slot="icon">
<Actions>
<ActionButton @click.prevent.stop="toggleEnabled">
<template #icon>
<CheckboxBlankCircle
:title="calendar.enabled ? $t('calendar', 'Disable calendar') : $t('calendar', 'Enable calendar') "
:size="20"
:fill-color="calendar.enabled ? calendar.color : 'var(--color-text-lighter)'" />
</template>
</ActionButton>
</Actions>
</template>

<template v-if="!deleteTimeout" slot="counter">
<Actions v-if="showSharingIcon" class="sharing">
Expand Down Expand Up @@ -171,7 +174,6 @@ import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
import ActionInput from '@nextcloud/vue/dist/Components/ActionInput'
import ActionLink from '@nextcloud/vue/dist/Components/ActionLink'
import ActionText from '@nextcloud/vue/dist/Components/ActionText'
import AppNavigationIconBullet from '@nextcloud/vue/dist/Components/AppNavigationIconBullet'
import AppNavigationItem from '@nextcloud/vue/dist/Components/AppNavigationItem'
import ClickOutside from 'vue-click-outside'
import {
Expand All @@ -183,11 +185,10 @@ import {
generateRemoteUrl,
} from '@nextcloud/router'
import AppNavigationDisabledCalendarIconBullet from './AppNavigationDisabledCalendarIconBullet.vue'
import CalendarListItemSharingSearch from './CalendarListItemSharingSearch.vue'
import CalendarListItemSharingPublishItem from './CalendarListItemSharingPublishItem.vue'
import CalendarListItemSharingShareItem from './CalendarListItemSharingShareItem.vue'
import CheckboxBlankCircle from 'vue-material-design-icons/CheckboxBlankCircle.vue'
import Close from 'vue-material-design-icons/Close.vue'
import Delete from 'vue-material-design-icons/Delete.vue'
import Download from 'vue-material-design-icons/Download.vue'
Expand All @@ -205,12 +206,11 @@ export default {
ActionInput,
ActionLink,
ActionText,
AppNavigationDisabledCalendarIconBullet,
AppNavigationIconBullet,
AppNavigationItem,
CalendarListItemSharingSearch,
CalendarListItemSharingPublishItem,
CalendarListItemSharingShareItem,
CheckboxBlankCircle,
Close,
Delete,
Download,
Expand Down

0 comments on commit 083f45d

Please sign in to comment.