diff --git a/.gitignore b/.gitignore index 403adbc..c680394 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,5 @@ pnpm-debug.log* *.njsproj *.sln *.sw? + +__pycache__ \ No newline at end of file diff --git a/server/app/__pycache__/__init__.cpython-38.pyc b/server/app/__pycache__/__init__.cpython-38.pyc deleted file mode 100644 index edfc345..0000000 Binary files a/server/app/__pycache__/__init__.cpython-38.pyc and /dev/null differ diff --git a/src/assets/css/_variables.scss b/src/assets/css/_variables.scss index c8a9f62..60f7e4b 100644 --- a/src/assets/css/_variables.scss +++ b/src/assets/css/_variables.scss @@ -1,6 +1,6 @@ // colors -$card-dark: #131313b2; +$card-dark: #000203; $red: #df4646; $blue: rgb(5, 80, 150); $green: rgb(67, 148, 67); diff --git a/src/assets/css/global.scss b/src/assets/css/global.scss index b575a66..37a5a0b 100644 --- a/src/assets/css/global.scss +++ b/src/assets/css/global.scss @@ -20,7 +20,6 @@ body { .heading { font-size: small; font-weight: bold; - color: #ffffffb2; display: flex; align-items: center; } @@ -84,7 +83,7 @@ a { padding-top: 0.5rem; margin: 0.5rem 0 0.5rem 0.5rem; border-radius: 0.5rem; - background-color: #131313b2; + background-color: $card-dark; } .collapsed .l-sidebar { @@ -129,11 +128,11 @@ a { margin-bottom: 0.5em; } -@media (max-width: 70em) { - .r-sidebar { - display: none; - } -} +// @media (max-width: 70em) { +// .r-sidebar { +// display: none; +// } +// } .image { background-position: center; @@ -220,3 +219,23 @@ a { background-position: 0% 38%; } } + +.now-playing-track { + height: 2rem; + width: 2rem; + border-radius: 50%; + background-color: #fff; + margin-top: 0rem; + background-size: 60%; +} + +.active { + background-image: url(../../assets/icons/playing.gif); + transition: all 0.3s ease-in-out; +} + +.not_active { + background-image: url(../../assets/icons/playing.webp); + transition: all 0.3s ease-in-out; + +} \ No newline at end of file diff --git a/src/assets/icons/playing.gif b/src/assets/icons/playing.gif new file mode 100644 index 0000000..e49caf8 Binary files /dev/null and b/src/assets/icons/playing.gif differ diff --git a/src/assets/icons/playing.webp b/src/assets/icons/playing.webp new file mode 100644 index 0000000..9d1923e Binary files /dev/null and b/src/assets/icons/playing.webp differ diff --git a/src/components/FolderView/FolderList.vue b/src/components/FolderView/FolderList.vue index 106f644..e718ec2 100644 --- a/src/components/FolderView/FolderList.vue +++ b/src/components/FolderView/FolderList.vue @@ -1,6 +1,5 @@ @@ -27,26 +23,19 @@ export default { \ No newline at end of file diff --git a/src/components/RightSideBar/Recommendation.vue b/src/components/RightSideBar/Recommendation.vue index 88d6207..ee5ae47 100644 --- a/src/components/RightSideBar/Recommendation.vue +++ b/src/components/RightSideBar/Recommendation.vue @@ -35,10 +35,10 @@ export default { }; - \ No newline at end of file