NMAPDEV plugin work v0.5 #645 🆕🔎

This commit is contained in:
jokob-sk
2024-04-24 23:19:23 +10:00
parent c7cb69c914
commit 141ba5d6c1
7 changed files with 151 additions and 51 deletions

View File

@@ -875,24 +875,24 @@ input[readonly] {
cursor: not-allowed;
}
.removable-option:hover::before {
.interactable-option:hover::before {
opacity: 1;
}
.removable-option::before {
content: 'Double-click to ❌';
.interactable-option::before {
content: 'Click 📝 | 2x❌';
position: absolute;
right: 0;
top: 0;
color: white;
background-color: rgb(255, 87, 87);
background-color: rgb(255, 188, 87);
padding: 3px;
transition: opacity 0.5s;
opacity: 0;
border-radius: 3px;
}
.removable-option:hover {
.interactable-option:hover {
transition: background-color 2s;
cursor: pointer;
}