Změny designu

closes #2 @1h
This commit is contained in:
2021-01-30 01:55:11 +01:00
parent b75b9c3ae6
commit b9c668841d
3 changed files with 42 additions and 2 deletions

View File

@@ -123,6 +123,15 @@ class View {
textArea.innerHTML = text;
}
commentHover(c, active = true) {
let svgDoc = c.contentDocument;
if (active) {
svgDoc.getElementById("path4").style.fill = "#ffa800";
} else {
svgDoc.getElementById("path4").style.fill = "#c1c1c1";
}
}
/* colorTogglePlaySVG() {
var playSVG = document.getElementById("togglePlayIcon");
var svgDoc;