Merge pull request #119 from Ennea/main

Two small web frontend changes
This commit is contained in:
Infi
2024-09-06 12:27:48 +02:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -298,7 +298,9 @@ section#input {
display: inline-block; display: inline-block;
position: relative; position: relative;
width: 2rem; width: 2rem;
height: 1px;
vertical-align: middle; vertical-align: middle;
overflow: visible;
img { img {
content: ''; content: '';
+1 -1
View File
@@ -84,7 +84,7 @@
channelElement.firstChild.innerText = `(Locked) ${channelElement.firstChild.innerText}`; channelElement.firstChild.innerText = `(Locked) ${channelElement.firstChild.innerText}`;
this.elements.channelSelect.style.pointerEvents = 'none'; this.elements.channelSelect.style.pointerEvents = 'none';
} else { } else {
this.elements.channelSelect.style.pointerEvents = 'auto'; this.elements.channelSelect.style.removeProperty('pointer-events');
} }
this.elements.channelHint.appendChild(channelElement); this.elements.channelHint.appendChild(channelElement);