From 6726c78c818c01bdf759284f28c00ed478d443f7 Mon Sep 17 00:00:00 2001 From: Thomas Amland Date: Tue, 5 Nov 2024 10:06:36 +0100 Subject: [PATCH] wip --- package.json | 2 +- public/index.html | 6 +- src/app/Logo.vue | 4 +- src/app/Sidebar.vue | 6 +- src/app/TopNav.vue | 6 +- src/auth/Login.vue | 16 ++-- src/library/album/AlbumDetails.vue | 10 +-- src/library/artist/ArtistDetails.vue | 8 +- src/library/file/Files.vue | 2 +- src/library/playlist/CreatePlaylistModal.vue | 14 +-- src/library/playlist/Playlist.vue | 32 +++---- src/library/playlist/PlaylistNav.vue | 6 +- src/library/podcast/AddPodcastModal.vue | 14 +-- src/library/podcast/PodcastDetails.vue | 4 +- src/library/podcast/PodcastLibrary.vue | 2 +- src/library/radio/RadioStations.vue | 14 +-- src/library/search/SearchForm.vue | 2 +- src/library/track/BaseTableHead.vue | 4 +- src/library/track/CellActions.vue | 15 ++-- src/library/track/CellDuration.vue | 2 +- src/library/track/TrackList.vue | 6 +- src/player/Player.vue | 60 ++++++------- src/player/ProgressBar.vue | 16 ++-- src/player/Queue.vue | 8 +- src/shared/components/ContextMenuItem.vue | 2 +- src/shared/components/EditModal.vue | 14 +-- src/shared/components/Hero.vue | 2 +- src/shared/components/OverflowMenu.vue | 1 + src/shared/components/Slider.vue | 12 +-- src/shared/components/SwitchInput.vue | 8 +- src/shared/components/Tile.vue | 2 +- src/style/_variables.scss | 15 ---- src/style/main.scss | 90 ++++++++++++++------ src/style/nav.scss | 2 +- src/style/table.scss | 16 +++- yarn.lock | 7 +- 36 files changed, 231 insertions(+), 199 deletions(-) diff --git a/package.json b/package.json index af5eb38..11a2bfb 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "dependencies": { "@iconify-icons/bi": "^1.2.2", "@vueuse/core": "^11.1.0", - "bootstrap": "^4.6.0", + "bootstrap": "^5.3.3", "bootstrap-vue": "^2.23.1", "icecast-metadata-stats": "^0.1.1", "lodash-es": "^4.17.21", diff --git a/public/index.html b/public/index.html index a70c447..fe48d57 100644 --- a/public/index.html +++ b/public/index.html @@ -1,12 +1,12 @@ - + <% if (process.env.NODE_ENV === "production") { %> - + <% } else { %> - + <% } %> diff --git a/src/app/Logo.vue b/src/app/Logo.vue index 6531ac5..4cfc9fc 100644 --- a/src/app/Logo.vue +++ b/src/app/Logo.vue @@ -18,7 +18,7 @@ - + airsonic  (refix) @@ -26,7 +26,7 @@ diff --git a/src/app/TopNav.vue b/src/app/TopNav.vue index e08f7d3..ddb4b2f 100644 --- a/src/app/TopNav.vue +++ b/src/app/TopNav.vue @@ -4,7 +4,7 @@ -
+
@@ -15,9 +15,9 @@ - +
{{ store.username }} - +
Server diff --git a/src/auth/Login.vue b/src/auth/Login.vue index b87b475..f0faa6d 100644 --- a/src/auth/Login.vue +++ b/src/auth/Login.vue @@ -1,5 +1,5 @@