disable songitem double click text selection for firefox

This commit is contained in:
geoffrey45 2022-05-12 19:49:47 +03:00
parent 469a9aa8e4
commit 2e274dac1d
3 changed files with 26 additions and 1 deletions

View File

@ -45,6 +45,26 @@ There may be a few more, but I can't remember them at the moment.
I'm working on this section. I'll be adding instructions soon. Please check back later! I'm working on this section. I'll be adding instructions soon. Please check back later!
<details>
<summary><b>🔥🔥🔥 Version 0.1.0-alpha is coming soon 🔥🔥🔥</b></summary>
I've been working on this for a while and I'm happy to announce that version 0.1 alpha is almost ready.
Here are some of the features that will be working:
1. Browsing and playing music from your folders
2. Creating playlists
3. Viewing album page
4. Adding single tracks to queue
5. Adding tracks to playlist
6. Customizing playlist, etc
I'm testing this out on my Ubuntu machine. If you have Windows, Mac or FreeBSD, you might run into some issues.
⏩️⏩️⏩️⏩️⏩️
</details>
### Contributing ### Contributing
The app runs on Python, Vue, Flask, MongoDB and Nginx. If you want to contribute, please open an issue or pull request. Your contribution is highly valued. The app runs on Python, Vue, Flask, and MongoDB. If you want to contribute, please open an issue or pull request. Your contribution is highly valued.

View File

@ -117,6 +117,7 @@ function emitUpdate(track: Track) {
text-align: left; text-align: left;
gap: $small; gap: $small;
user-select: none; user-select: none;
-moz-user-select: none;
.context { .context {
position: fixed; position: fixed;

View File

@ -4,4 +4,8 @@
- [ ] Featured artists on playlist page - [ ] Featured artists on playlist page
- [ ] Ability to create new playlist from playlists page - [ ] Ability to create new playlist from playlists page
- [ ] Ability to remove track from playlist - [ ] Ability to remove track from playlist
- [ ] Ability to delete playlist
- [ ] All dummy buttons, text and other material removed (Probably from the release branch) - [ ] All dummy buttons, text and other material removed (Probably from the release branch)
- [ ] Render correct playlist time in playlist page
<!-- include album artist in featured artists if not already there -->