diff --git a/css/style.css b/css/style.css index ec11cad..0bd0cef 100644 --- a/css/style.css +++ b/css/style.css @@ -76,4 +76,8 @@ nav { .btn-group img:hover { cursor: pointer; +} + +img.clickable { + cursor: pointer; } \ No newline at end of file diff --git a/scripts/config.js b/scripts/config.js index 9226fb6..e4016cd 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -147,5 +147,6 @@ function addDiskLine (fieldset, id, iconHref, labelText, valueText) { let config = document.createElement("img"); config.src = "images/actions/config-active.svg"; config.alt = `Config disk ${labelText}`; + config.classList.add("clickable"); field.append(config); } \ No newline at end of file