upd icons & tabs

This commit is contained in:
beo3000 2026-03-03 10:53:17 +01:00
parent 4ec63d4bd8
commit d65114a681
7 changed files with 12 additions and 7 deletions

View File

@ -1 +1 @@
1.2.18 1.2.20

View File

@ -64,10 +64,10 @@
); );
</script> </script>
<div class="mb-4 mt-2 flex items-end gap-0 overflow-x-auto border-b border-[#3a3a3a] scrollbar-hide"> <div class="mb-4 mt-2 flex flex-wrap items-end gap-0 border-b border-[#3a3a3a]">
{#each tabs as tab} {#each tabs as tab}
<button <button
class="flex-shrink-0 px-3.5 py-2 text-sm font-medium transition-colors border-b-2 -mb-px {activeView === tab.id class="px-3.5 py-2 text-sm font-medium transition-colors border-b-2 -mb-px {activeView === tab.id
? 'border-accent text-white' ? 'border-accent text-white'
: 'border-transparent text-[#888] hover:text-[#bbb] cursor-pointer'}" : 'border-transparent text-[#888] hover:text-[#bbb] cursor-pointer'}"
onclick={() => onviewchange(tab.id)} onclick={() => onviewchange(tab.id)}
@ -76,12 +76,17 @@
</button> </button>
{/each} {/each}
{#if isMeeting && activeView === "agenda" && ontogglecompact} {#if isMeeting && ontogglecompact}
<button <button
class="ml-auto flex-shrink-0 px-2.5 py-1.5 mb-0.5 text-xs text-[#777] hover:text-[#aaa] border border-[#444] rounded transition-colors" class="ml-auto px-2 py-1.5 mb-0.5 text-[#777] hover:text-[#aaa] transition-colors cursor-pointer"
onclick={ontogglecompact} onclick={ontogglecompact}
title={compact ? "Alle aufklappen" : "Alle einklappen"}
> >
{compact ? "Aufklappen" : "Einklappen"} {#if compact}
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 20 5-5 5 5"/><path d="m7 4 5 5 5-5"/></svg>
{:else}
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 15 5 5 5-5"/><path d="m7 9 5-5 5 5"/></svg>
{/if}
</button> </button>
{/if} {/if}
</div> </div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 776 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -17,7 +17,7 @@ export default defineConfig({
theme_color: '#1a1a22', theme_color: '#1a1a22',
icons: [ icons: [
{ src: '/icon-192.png', sizes: '192x192', type: 'image/png', purpose: 'any' }, { src: '/icon-192.png', sizes: '192x192', type: 'image/png', purpose: 'any' },
{ src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' } { src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'any' }
] ]
}, },
workbox: { workbox: {

Binary file not shown.

Binary file not shown.