mirror of
				https://github.com/Blah-IM/Weblah.git
				synced 2025-11-03 19:31:38 +00:00 
			
		
		
		
	chore: upgrade to tailwindcss v4
This commit is contained in:
		
							parent
							
								
									88551053d9
								
							
						
					
					
						commit
						cd0bf37a68
					
				
					 22 changed files with 434 additions and 694 deletions
				
			
		| 
						 | 
				
			
			@ -19,12 +19,12 @@
 | 
			
		|||
	this={href ? 'a' : 'button'}
 | 
			
		||||
	{href}
 | 
			
		||||
	class={tw(
 | 
			
		||||
		'inline-flex cursor-default items-center justify-center rounded-md px-2 py-1 text-sf-secondary shadow-sm ring-1 ring-ss-secondary',
 | 
			
		||||
		'inline-flex cursor-default items-center justify-center rounded-md px-2 py-1 text-sf-secondary shadow-xs ring-1 ring-ss-secondary',
 | 
			
		||||
		'font-normal transition-shadow duration-200 hover:ring-ss-primary active:shadow-inner',
 | 
			
		||||
		variant === 'primary' && [
 | 
			
		||||
			'relative text-slate-50 ring-0 duration-200',
 | 
			
		||||
			'before:absolute before:-inset-px before:rounded-[7px]',
 | 
			
		||||
			'before:bg-gradient-to-b before:from-accent-400 before:from-40% before:to-accent-500 before:ring-1 before:ring-inset before:ring-black/10',
 | 
			
		||||
			'before:bg-linear-to-b before:from-accent-400 before:from-40% before:to-accent-500 before:ring-1 before:ring-inset before:ring-black/10',
 | 
			
		||||
			'before:transition-shadow active:before:shadow-inner dark:before:from-accent-500 dark:before:to-accent-600'
 | 
			
		||||
		],
 | 
			
		||||
		className
 | 
			
		||||
| 
						 | 
				
			
			@ -35,7 +35,7 @@
 | 
			
		|||
	tabindex="0"
 | 
			
		||||
>
 | 
			
		||||
	{#if variant === 'primary'}
 | 
			
		||||
		<div class="z-10 drop-shadow-[0_-1px_0_theme(colors.black/0.2)]"><slot /></div>
 | 
			
		||||
		<div class="z-10 drop-shadow-[0_-1px_0_--theme(--color-black/0.2)]"><slot /></div>
 | 
			
		||||
	{:else}
 | 
			
		||||
		<slot />
 | 
			
		||||
	{/if}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,7 @@
 | 
			
		|||
</script>
 | 
			
		||||
 | 
			
		||||
<DropdownMenu.Item
 | 
			
		||||
	class="cursor-default rounded px-1.5 py-0.5 text-sf-primary transition-colors duration-200 hover:bg-accent-50 group-has-[[data-melt-dropdown-menu-radio-group]]:ps-6 dark:hover:bg-white/5"
 | 
			
		||||
	class="cursor-default rounded-sm px-1.5 py-0.5 text-sf-primary transition-colors duration-200 hover:bg-accent-50 group-has-data-melt-dropdown-menu-radio-group:ps-6 dark:hover:bg-white/5"
 | 
			
		||||
	on:click
 | 
			
		||||
	{...$$restProps}
 | 
			
		||||
>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -8,7 +8,7 @@
 | 
			
		|||
</script>
 | 
			
		||||
 | 
			
		||||
<DropdownMenu.RadioItem
 | 
			
		||||
	class="flex cursor-default items-center gap-1 rounded px-1.5 py-0.5 text-sf-primary transition-colors duration-200 hover:bg-accent-50 dark:hover:bg-white/5"
 | 
			
		||||
	class="flex cursor-default items-center gap-1 rounded-sm px-1.5 py-0.5 text-sf-primary transition-colors duration-200 hover:bg-accent-50 dark:hover:bg-white/5"
 | 
			
		||||
	{value}
 | 
			
		||||
	{...$$props}
 | 
			
		||||
>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
<label
 | 
			
		||||
	class="flex gap-2 px-4 py-3 font-medium text-sf-primary [align-items:first_baseline] [&>input]:flex-1 [&>input]:bg-transparent [&>input]:text-end [&>input]:outline-none [&>input]:placeholder:opacity-50"
 | 
			
		||||
	class="flex gap-2 px-4 py-3 font-medium text-sf-primary [align-items:first_baseline] [&>input]:flex-1 [&>input]:bg-transparent [&>input]:text-end [&>input]:outline-hidden [&>input]:placeholder:opacity-50"
 | 
			
		||||
>
 | 
			
		||||
	<slot />
 | 
			
		||||
</label>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,7 @@
 | 
			
		|||
		</h3>
 | 
			
		||||
	{/if}
 | 
			
		||||
	<div
 | 
			
		||||
		class="divide-y-[0.5px] divide-ss-secondary overflow-hidden rounded-lg border-[0.5px] border-ss-secondary bg-sb-primary shadow-sm"
 | 
			
		||||
		class="divide-y-[0.5px] divide-ss-secondary overflow-hidden rounded-lg border-[0.5px] border-ss-secondary bg-sb-primary shadow-xs"
 | 
			
		||||
	>
 | 
			
		||||
		<slot />
 | 
			
		||||
	</div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,7 +7,7 @@
 | 
			
		|||
 | 
			
		||||
<label
 | 
			
		||||
	class={tw(
 | 
			
		||||
		'flex items-center gap-1 rounded-md bg-sb-primary px-2 py-1.5 caret-accent-500 shadow-[inset_0_1px_2px_0_rgb(0_0_0/0.05)] ring-1 ring-ss-secondary transition-shadow duration-200 has-[input,textarea,[contenteditable]]:cursor-text has-[:focus]:ring-ss-primary',
 | 
			
		||||
		'flex items-center gap-1 rounded-md bg-sb-primary px-2 py-1.5 caret-accent-500 shadow-[inset_0_1px_2px_0_rgb(0_0_0/0.05)] ring-1 ring-ss-secondary transition-shadow duration-200 has-[input,textarea,[contenteditable]]:cursor-text has-focus:ring-ss-primary',
 | 
			
		||||
		className
 | 
			
		||||
	)}
 | 
			
		||||
>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,7 +7,7 @@
 | 
			
		|||
 | 
			
		||||
<header
 | 
			
		||||
	class={tw(
 | 
			
		||||
		'flex min-h-[calc(3rem+1px)] cursor-default items-center border-b border-ss-secondary bg-sb-primary p-2 text-center font-semibold text-sf-primary shadow-sm',
 | 
			
		||||
		'flex min-h-[calc(3rem+1px)] cursor-default items-center border-b border-ss-secondary bg-sb-primary p-2 text-center font-semibold text-sf-primary shadow-xs',
 | 
			
		||||
		className
 | 
			
		||||
	)}
 | 
			
		||||
>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -13,7 +13,7 @@
 | 
			
		|||
	<span class="sr-only">{account.profile.signee.payload.name}</span>
 | 
			
		||||
{:else}
 | 
			
		||||
	<div
 | 
			
		||||
		class="box-border size-[--weblah-profile-pic-size] rounded-full border-2 border-dashed border-ss-primary"
 | 
			
		||||
		class="box-border size-(--weblah-profile-pic-size) rounded-full border-2 border-dashed border-ss-primary"
 | 
			
		||||
		style:--weblah-profile-pic-size={`${size}px`}
 | 
			
		||||
		aria-hidden
 | 
			
		||||
	/>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -50,7 +50,7 @@
 | 
			
		|||
</script>
 | 
			
		||||
 | 
			
		||||
<div
 | 
			
		||||
	class="rich-text relative w-full outline-none before:absolute before:hidden before:leading-tight before:opacity-50 before:content-[attr(data-weblah-placeholder)] data-[weblah-is-empty]:before:block"
 | 
			
		||||
	class="rich-text relative w-full outline-hidden before:absolute before:hidden before:leading-tight before:opacity-50 before:content-[attr(data-weblah-placeholder)] data-weblah-is-empty:before:block"
 | 
			
		||||
	use:asRoot={editor}
 | 
			
		||||
	data-weblah-is-empty={!delta || (delta.ops.length === 1 && delta.ops[0].insert === '\n')
 | 
			
		||||
		? 'true'
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,7 +7,7 @@
 | 
			
		|||
 | 
			
		||||
<div
 | 
			
		||||
	class={tw(
 | 
			
		||||
		'backdrop mx-4 inline-block cursor-default rounded-full px-2 py-0.5 text-center text-sm text-sf-secondary backdrop-blur-sm',
 | 
			
		||||
		'backdrop mx-4 inline-block cursor-default rounded-full px-2 py-0.5 text-center text-sm text-sf-secondary backdrop-blur-xs',
 | 
			
		||||
		className
 | 
			
		||||
	)}
 | 
			
		||||
>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue