looking good

This commit is contained in:
Broque Thomas 2025-07-12 20:51:02 -07:00
parent 35e7dbb060
commit 73d073a025
3 changed files with 1227 additions and 9 deletions

View file

@ -1 +1 @@
{"access_token": "BQCbKUxo8sQmC5rik8WhrU6rRE-ZUgbDvFaNh3npCFrb8VNFa5xJ3uc7Sd88ubQYSHKvjabzuJVgrXPIV3C1jweBDiHkYiUUnAiy7iHWG5d8dTnthBqh0kcHgVkGObwiAmmOOVCmgeGM7napfeulZq861MJWF95wVWRy06rxd4Unkz69GvL6Cg4sxQWqN41NEvTB38grreW78Al6YClbjQLnBDENDWTUpjpfHa9aMZPpmNpQ5WCc86MOkk_Sd_uR", "token_type": "Bearer", "expires_in": 3600, "scope": "user-library-read user-read-private playlist-read-private playlist-read-collaborative user-read-email", "expires_at": 1752376395, "refresh_token": "AQDmfQkPCGObfJeTUIbW1hAAwhSqkuHRA3Qh2dqVYMRh0eCkFMQgPNJDDzF8y-BiaVbj80zePkK_XSfYH1aJutMtNbnsqRKWuxP31BTrMc7pdUdbE7Fma4oH8wpDUKdG3MM"} {"access_token": "BQBozTunefcJHK4Cbd89xdC1Mr6N9VXvUgZzQuzFHl8aBRhuSvwjH4lQUzyHcsDusjU_txcv-menbRzz_H4aSJobcgQN8nyqCcHbfXtyHcML9f8ICq-buCNJt_T26PWKymjkFiMrmovHnfQYCK0brL2RxY-ln60DEap_q6CaD5wYCrmxvDUgY4YM4dV3WIZr4VEAbtua9P01X7JWuQFpwx7CULffS5MaTA8k6HtqY18ANWjw-fA-5Z2F-tm69DyM", "token_type": "Bearer", "expires_in": 3600, "scope": "user-library-read user-read-private playlist-read-private playlist-read-collaborative user-read-email", "expires_at": 1752380867, "refresh_token": "AQDmfQkPCGObfJeTUIbW1hAAwhSqkuHRA3Qh2dqVYMRh0eCkFMQgPNJDDzF8y-BiaVbj80zePkK_XSfYH1aJutMtNbnsqRKWuxP31BTrMc7pdUdbE7Fma4oH8wpDUKdG3MM"}

File diff suppressed because it is too large Load diff

View file

@ -3624,11 +3624,11 @@ class DownloadsPage(QWidget):
self.filter_toggle_btn.setStyleSheet(""" self.filter_toggle_btn.setStyleSheet("""
QPushButton { QPushButton {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #1ed760, stop:0 rgba(80, 80, 80, 0.9),
stop:1 #1db954); stop:1 rgba(70, 70, 70, 0.95));
border: none; border: 1px solid rgba(100, 100, 100, 0.3);
border-radius: 6px; border-radius: 6px;
color: white; color: rgba(255, 255, 255, 0.8);
font-size: 11px; font-size: 11px;
font-weight: 600; font-weight: 600;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
@ -3636,13 +3636,14 @@ class DownloadsPage(QWidget):
} }
QPushButton:hover { QPushButton:hover {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #1fdd63, stop:0 rgba(90, 90, 90, 0.9),
stop:1 #1ed760); stop:1 rgba(80, 80, 80, 0.95));
color: rgba(255, 255, 255, 0.9);
} }
QPushButton:pressed { QPushButton:pressed {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #1ab84c, stop:0 rgba(60, 60, 60, 0.9),
stop:1 #18a144); stop:1 rgba(50, 50, 50, 0.95));
} }
""") """)