created right click handler, refacter renderers

This commit is contained in:
evanpelle
2024-09-16 17:09:01 -07:00
parent e9cd3664c9
commit 7c5ebaf456
13 changed files with 335 additions and 183 deletions
+24
View File
@@ -207,4 +207,28 @@ h3 {
width: 40px;
height: 40px;
}
}
#customMenu {
display: none;
position: absolute;
background-color: #f9f9f9;
border: 1px solid #ccc;
padding: 10px;
z-index: 1000;
}
#customMenu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#customMenu ul li {
padding: 8px 12px;
cursor: pointer;
}
#customMenu ul li:hover {
background-color: #f1f1f1;
}