Compare commits
No commits in common. "3f9eebfadaeb882380bc782980393962ac9529e9" and "6b06868a642aeeec103bbb89183072bd9013b4e8" have entirely different histories.
3f9eebfada
...
6b06868a64
|
@ -20,7 +20,7 @@ h2.bot {
|
||||||
background-color: #80cbc4;
|
background-color: #80cbc4;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
font-size: clamp(1rem, -0.8750rem + 8.3333vw, 2rem);
|
font-size: 30px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #073642
|
color: #073642
|
||||||
|
|
|
@ -24,7 +24,8 @@ window.onload = function() {
|
||||||
group: "dndmusicbot-playlists",
|
group: "dndmusicbot-playlists",
|
||||||
filter: ".locked",
|
filter: ".locked",
|
||||||
onMove: (e) => {
|
onMove: (e) => {
|
||||||
if (e.related) {
|
if (e.related)
|
||||||
|
{
|
||||||
return !e.related.classList.contains('locked');
|
return !e.related.classList.contains('locked');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -45,7 +46,8 @@ window.onload = function() {
|
||||||
group: "dndmusicbot-ambiance",
|
group: "dndmusicbot-ambiance",
|
||||||
filter: ".locked",
|
filter: ".locked",
|
||||||
onMove: (e) => {
|
onMove: (e) => {
|
||||||
if (e.related) {
|
if (e.related)
|
||||||
|
{
|
||||||
return !e.related.classList.contains('locked');
|
return !e.related.classList.contains('locked');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue