From 433cd8d3a2179a537d2ff5bbc11caffe23f3621b 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 | 35 +++--- src/app/TopNav.vue | 12 +-- src/app/layout/Default.vue | 2 +- 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 | 14 ++- 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 | 11 +- 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 | 107 +++++++++++++------ src/style/{nav.scss => nav-underlined.scss} | 2 +- src/style/table.scss | 16 ++- yarn.lock | 7 +- 37 files changed, 270 insertions(+), 235 deletions(-) delete mode 100644 src/style/_variables.scss rename src/style/{nav.scss => nav-underlined.scss} (93%) 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..c7024da 100644 --- a/src/app/TopNav.vue +++ b/src/app/TopNav.vue @@ -1,23 +1,23 @@