From 0877347a44e557bb9d268cc4134e8ba2e3bfa284 Mon Sep 17 00:00:00 2001 From: Daksh Doshi Date: Wed, 27 Jan 2021 11:00:29 +0530 Subject: [PATCH] Made cursor as Pointer on Done and Back buttons in temperament widget --- js/widgets/temperament.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/widgets/temperament.js b/js/widgets/temperament.js index 0ef3db2f75..6eb7df6589 100644 --- a/js/widgets/temperament.js +++ b/js/widgets/temperament.js @@ -926,6 +926,7 @@ class TemperamentWidget { divAppend.style.height = "32px"; divAppend.style.marginTop = "40px"; divAppend.style.overflow = "auto"; + divAppend.style.cursor = "pointer"; equalEdit.append(divAppend); const divAppend1 = docById("preview"); @@ -933,13 +934,15 @@ class TemperamentWidget { divAppend1.style.marginLeft = "3px"; divAppend1.style.backgroundColor = platformColor.selectorBackground; divAppend1.style.width = "215px"; + divAppend1.style.cursor = "pointer"; const divAppend2 = docById("done_"); divAppend2.style.height = "30px"; divAppend2.style.marginRight = "3px"; divAppend2.style.backgroundColor = platformColor.selectorBackground; divAppend2.style.width = "205px"; - }; + divAppend2.style.cursor = "pointer"; + } addDivision(false);