Skip to content
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
2 changes: 1 addition & 1 deletion resources/js/components/entries/PublishActions.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<Stack size="narrow" :title="__('Publish')" open @update:open="$emit('closed')">
<div class="">
<div class="flex-1 overflow-auto">
<div class="flex-1">
<div class="loading flex h-full items-center justify-center" v-if="saving">
<Icon name="loading" />
</div>
Expand Down
8 changes: 6 additions & 2 deletions resources/js/components/entries/PublishForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,19 @@
<Icon name="checkmark" class="text-green-600" />
{{ __('Entry has a published version') }}
</Subheading>
<Subheading v-else class="flex items-center gap-2 text-yellow-600">
<Subheading v-else class="flex items-center gap-2 text-yellow-700 dark:text-yellow-500">
<Icon name="warning-diamond" />
{{ __('Entry has not been published') }}
</Subheading>
<Subheading v-if="isWorkingCopy" class="flex items-center gap-2 text-yellow-700 dark:text-yellow-500">
<Icon name="warning-diamond" />
{{ __('This is the working copy') }}
</Subheading>
<Subheading v-if="!isWorkingCopy && published" class="flex items-center gap-2">
<Icon name="checkmark" class="text-green-600" />
{{ __('This is the published version') }}
</Subheading>
<Subheading v-if="isDirty" class="flex items-center gap-2 text-yellow-600">
<Subheading v-if="isDirty" class="flex items-center gap-2 text-yellow-700 dark:text-yellow-500">
<Icon name="warning-diamond" />
{{ __('Unsaved Changes') }}
</Subheading>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/ui/Panel/Panel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const props = defineProps({
<div
:class="[
'@container/panel relative bg-gray-150 dark:bg-gray-950/35 dark:inset-shadow-2xs dark:inset-shadow-black',
'w-full rounded-2xl mb-10 max-[600px]:p-1.25 p-1.75 [&:has(>[data-ui-panel-header])]:pt-0 focus-none starting-style-transition',
'w-full rounded-2xl mb-8 max-[600px]:p-1.25 p-1.75 [&:has(>[data-ui-panel-header])]:pt-0 focus-none starting-style-transition',
]"
data-ui-panel
>
Expand Down