Update UI components and enhance controller navigation for improved user experience

- Updated styles in various components to change color themes from cyan to yellow for better visual consistency.
- Enhanced focus management in controller navigation to improve accessibility and user interaction.
- Added new data attributes for controller navigation in multiple views to streamline user interactions with app containers.
- Improved audio handling by removing unused functions in useLoginSounds.ts, optimizing the codebase.
This commit is contained in:
Dorian
2026-02-17 21:10:16 +00:00
parent 5a04875dcc
commit 316dfee2fc
12 changed files with 428 additions and 55 deletions

View File

@@ -58,6 +58,7 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import { useAppLauncherStore } from '@/stores/appLauncher'
const router = useRouter()
@@ -120,6 +121,8 @@ function openFolder(folderId: string) {
}
function openNextcloud() {
window.open('http://localhost:8086', '_blank', 'noopener,noreferrer')
const host = window.location.hostname
const url = `http://${host}:8086`
useAppLauncherStore().open({ url, title: 'Nextcloud' })
}
</script>