From dcfe7115fa4259cad268ee336d9a46f9d37396ff Mon Sep 17 00:00:00 2001 From: Kristy Fournier <124598538+kristy-fournier@users.noreply.github.com> Date: Tue, 7 Oct 2025 16:36:06 -0400 Subject: [PATCH] Playlist items text is spaced not stupidly Playlist Items look like not garbage now I gave them a giant margin and forgot about it. should be good now the item holders have padding instead for the edges --- Client/styles.css | 3 ++- Server/databaseGenerator.py | 2 -- wishlist.md | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Client/styles.css b/Client/styles.css index fdd3d09..ffe8a7d 100644 --- a/Client/styles.css +++ b/Client/styles.css @@ -136,6 +136,7 @@ h4 { } .playlist > .item > .text { + padding: 3px; display: inline-block; margin: 0px 3px; } @@ -150,7 +151,7 @@ h4 { } .playlist > .item > .text > * { - margin:5% 2px; + margin:2px; } /* settings stuff */ diff --git a/Server/databaseGenerator.py b/Server/databaseGenerator.py index e83cbc3..8a9b714 100644 --- a/Server/databaseGenerator.py +++ b/Server/databaseGenerator.py @@ -108,6 +108,4 @@ for i in songFiles: # each "song" is stored as a dictionary/JSON entry following the format seen in the readME songDatabase.execute(f"INSERT INTO songs (filename, title, artist, art, length) VALUES (?,?,?,?,?)",(i,title,artist,image,length)) - - fileOfDB.commit() diff --git a/wishlist.md b/wishlist.md index 75ec375..bb3161d 100644 --- a/wishlist.md +++ b/wishlist.md @@ -9,6 +9,7 @@ - [ ] Secure Password * Actually use SSL for stuff that should be using it - [ ] GUI update for client + - [x] Playlist items look cleaner - [ ] Google material design?? - [ ] Dark mode? - [ ] New Icons @@ -16,4 +17,4 @@ - Based on time period, number in queue, other possible ideas for credits - Without a login system there's no easy way to give credits to specific clients (and a login is beyond scope of what I want to do) - Potentially a "redemption code" system, which can be tracked client side - - All of this is also very hackable without a server-side login. \ No newline at end of file + - All of this is very hackable without a server-side login. \ No newline at end of file