From 0ee6a217e3445a94ed43aa35be939f449b235acb Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Wed, 11 Jan 2023 01:32:51 -0800 Subject: [PATCH] add pointer to disk items --- css/style.css | 4 ++++ scripts/config.js | 1 + 2 files changed, 5 insertions(+) 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