Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EditSimple: add spacing #6165

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions css/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@
overflow-x: hidden;
}
}

.app-navigation-spacer {
list-style-type: none;
}
4 changes: 4 additions & 0 deletions src/views/EditSimple.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@
:calendar-id="calendarId"
@close="closeEditorAndSkipAction" />

<NcAppNavigationSpacer />

Check warning on line 138 in src/views/EditSimple.vue

View check run for this annotation

Codecov / codecov/patch

src/views/EditSimple.vue#L137-L138

Added lines #L137 - L138 were not covered by tests
<SaveButtons v-if="!isWidget"
class="event-popover__buttons"
:can-create-recurrence-exception="canCreateRecurrenceException"
Expand Down Expand Up @@ -167,6 +169,7 @@
NcActionLink as ActionLink,
NcEmptyContent as EmptyContent,
NcPopover,
NcAppNavigationSpacer,

Check warning on line 172 in src/views/EditSimple.vue

View check run for this annotation

Codecov / codecov/patch

src/views/EditSimple.vue#L172

Added line #L172 was not covered by tests
NcButton,
} from '@nextcloud/vue'
import EditorMixin from '../mixins/EditorMixin.js'
Expand Down Expand Up @@ -217,6 +220,7 @@
InviteesList,
NcButton,
EditIcon,
NcAppNavigationSpacer,

Check warning on line 223 in src/views/EditSimple.vue

View check run for this annotation

Codecov / codecov/patch

src/views/EditSimple.vue#L223

Added line #L223 was not covered by tests
},
mixins: [
EditorMixin,
Expand Down
Loading