Skip to content

Commit

Permalink
Set cursor to pointer
Browse files Browse the repository at this point in the history
Made cursor as Pointer on Clear button in temperament widget

Made cursor as Pointer on Done and Back buttons in temperament widget
  • Loading branch information
daksh4469 authored and meganindya committed Jan 28, 2021
1 parent cc4c72e commit b7cf70b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/widgets/temperament.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,7 @@ class TemperamentWidget {
divAppend1.style.width = docById("wheelDiv2").style.width;
divAppend1.style.marginTop = docById("wheelDiv2").style.height;
divAppend1.style.overflow = "auto";
divAppend1.style.cursor = "pointer";
docById("temperamentTable").append(divAppend1);
}

Expand Down Expand Up @@ -925,20 +926,23 @@ 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");
divAppend1.style.height = "30px";
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);

Expand Down

0 comments on commit b7cf70b

Please sign in to comment.