1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-10-23 18:07:42 +00:00

Feat: enable queue sorting with drag & drop

This commit is contained in:
jcorporation
2018-07-23 00:07:25 +01:00
parent 99efe12ed1
commit 4cc4580310
3 changed files with 70 additions and 4 deletions

View File

@@ -220,3 +220,17 @@ caption {
font-weight: bold;
color: black;
}
.dragover > td {
border-top:2px solid red;
}
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}