Still working on upgrading to Tailwind CSS v4 an dSkeleton v3.....

This commit is contained in:
Scott Idem
2025-06-18 17:59:48 -04:00
parent db6e9dd019
commit 13912fd145
169 changed files with 2343 additions and 1634 deletions

View File

@@ -96,12 +96,12 @@ onMount(() => {
>
<div class="border border-gray-200 p-2 rounded-lg">
<h1 class="h1">&AElig; Hosted Files</h1>
<h1 class="h1">Æ Hosted Files</h1>
<h2 class="h2">Video Utilities</h2>
<p>Clip, scale, re-encode videos files (mp4).</p>
<a href="hosted_files/video_util" class="btn variant-filled-primary">
<a href="hosted_files/video_util" class="btn preset-filled-primary-500">
<span class="fas fa-video mx-1"></span>
Video Utilities
</a>
@@ -147,7 +147,7 @@ onMount(() => {
<input type="file" name="title_image" accept="image/*" class="input w-96" />
</label>
<button type="submit" class="btn variant-filled-warning mx-1">
<button type="submit" class="btn preset-filled-warning-500 mx-1">
<span class="fas fa-upload mx-1"></span>
Submit
</button>

View File

@@ -130,7 +130,7 @@ onMount(() => {
<button
type="button"
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
title="Toggle between Upload and Select from Hosted Files"
onclick={() => {
if ($ae_sess.files.add_to_use_files_method == 'upload') {
@@ -196,7 +196,7 @@ onMount(() => {
onclick={() => {
$ae_loc.files.uploaded_file_kv = {};
}}
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
>
<span class="fas fa-broom m-1"></span>
Clear Upload History
@@ -228,7 +228,7 @@ onMount(() => {
onclick={() => {
$ae_loc.files.video_clip_file_kv = {};
}}
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
>
<span class="fas fa-broom m-1"></span>
Clear Clip History
@@ -277,7 +277,7 @@ onMount(() => {
<input type="file" name="title_image" accept="image/*" class="input w-96" />
</label>
<button type="submit" class="btn variant-filled-warning mx-1">
<button type="submit" class="btn preset-filled-warning-500 mx-1">
<span class="fas fa-upload mx-1"></span>
Submit
</button>

View File

@@ -62,7 +62,7 @@ let hosted_file_clip: key_val = $state({
<button
type="button"
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
title="Toggle between Upload and Select from Hosted Files"
onclick={() => {
if ($ae_sess.files.add_to_use_files_method == 'upload') {
@@ -126,7 +126,7 @@ let hosted_file_clip: key_val = $state({
onclick={() => {
$ae_loc.files.uploaded_file_kv = {};
}}
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
>
<span class="fas fa-broom m-1"></span>
Clear Upload History
@@ -157,7 +157,7 @@ let hosted_file_clip: key_val = $state({
onclick={() => {
$ae_loc.files.video_clip_file_kv = {};
}}
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning float-right"
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 float-right"
>
<span class="fas fa-broom m-1"></span>
Clear Clip History
@@ -258,7 +258,7 @@ let hosted_file_clip: key_val = $state({
<input type="file" name="title_image" accept="image/*" class="input w-96" />
</label>
<button type="submit" class="btn variant-filled-warning mx-1">
<button type="submit" class="btn preset-filled-warning-500 mx-1">
<span class="fas fa-upload mx-1"></span>
Submit
</button>