add pointer to disk items

This commit is contained in:
Arthur Lu 2023-01-11 01:32:51 -08:00
parent 30c6deb86c
commit 49416cdd34
2 changed files with 5 additions and 0 deletions

View File

@ -76,4 +76,8 @@ nav {
.btn-group img:hover { .btn-group img:hover {
cursor: pointer; cursor: pointer;
}
img.clickable {
cursor: pointer;
} }

View File

@ -147,5 +147,6 @@ function addDiskLine (fieldset, id, iconHref, labelText, valueText) {
let config = document.createElement("img"); let config = document.createElement("img");
config.src = "images/actions/config-active.svg"; config.src = "images/actions/config-active.svg";
config.alt = `Config disk ${labelText}`; config.alt = `Config disk ${labelText}`;
config.classList.add("clickable");
field.append(config); field.append(config);
} }