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
4 changes: 0 additions & 4 deletions resources/css/core/utilities.css
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,6 @@
}
}

@utility bg-frosted {
@apply bg-white/85 backdrop-blur-sm;
}

/* UTILITIES / DECORATION / MASK BACKGROUND
=================================================== */
/* Notes...
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/FilesFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div>
<div
v-show="dragging"
class="absolute inset-0 flex gap-2 items-center justify-center bg-white/80 backdrop-blur-sm border border-gray-400 border-dashed rounded-lg"
class="absolute inset-0 flex gap-2 items-center justify-center bg-white/80 border border-gray-400 border-dashed rounded-lg"
>
<ui-icon name="upload-cloud" class="size-5 text-gray-500" />
<div class="text-sm text-gray-600 dark:text-gray-400">{{ __('Drop to Upload') }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div
v-if="config.allow_uploads"
v-show="dragging && !showSelector"
class="absolute inset-0 flex gap-2 items-center justify-center bg-white/80 backdrop-blur-sm border border-gray-400 border-dashed rounded-lg text-gray-700"
class="absolute inset-0 flex gap-2 items-center justify-center bg-white/80 border border-gray-400 border-dashed rounded-lg text-gray-700"
>
<ui-icon name="upload-cloud" class="size-5" />
<span class="text-sm">{{ __('Drop to Upload') }}</span>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/ui/Listing/BulkActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function actionFailed(response) {
:animate="{ y: 0, opacity: 1 }"
:transition="{ duration: 0.2, delay: 0.075, ease: 'easeInOut' }"
>
<div class="space-y-3 rounded-xl border border-gray-300/60 dark:border-gray-700 p-1 bg-gray-200/55 backdrop-blur-[20px] shadow-[0_1px_16px_-2px_rgba(63,63,71,0.2)] dark:bg-gray-800 dark:shadow-[0_10px_15px_rgba(0,0,0,.5)] dark:inset-shadow-2xs dark:inset-shadow-white/10">
<div class="space-y-3 rounded-xl border border-gray-300/60 dark:border-gray-700 p-1 bg-gray-200/55 shadow-[0_1px_16px_-2px_rgba(63,63,71,0.2)] dark:bg-gray-800 dark:shadow-[0_10px_15px_rgba(0,0,0,.5)] dark:inset-shadow-2xs dark:inset-shadow-white/10">
<ButtonGroup>
<Button
class="text-blue-500!"
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 @@ -14,7 +14,7 @@ const props = defineProps({
<template>
<div
:class="[
'@container/panel relative bg-gray-150 [.bg-architectural-lines_&]:backdrop-blur-[10px] dark:bg-gray-950/35 dark:inset-shadow-2xs dark:inset-shadow-black',
'@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',
]"
data-ui-panel
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/ui/Stack/Stack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ provide('closeStack', close);
<transition name="stack-overlay-fade">
<div
v-if="visible"
class="stack-overlay fixed inset-0 bg-gray-800/20 dark:bg-gray-800/50 backdrop-blur-[2px]"
class="stack-overlay fixed inset-0 bg-gray-800/20 dark:bg-gray-800/50"
:style="direction === 'ltr' ? { left: `-${leftOffset}px` } : { right: `-${leftOffset}px` }"
/>
</transition>
Expand Down