From 3baa67360ca07fc86fdaa29f8f436a883343a948 Mon Sep 17 00:00:00 2001 From: muehe Date: Fri, 1 May 2026 14:50:22 +0200 Subject: [PATCH] control: align XY/Z origin tile color with other axis tiles Drop the .ghost class from the XY Origin and Z Origin tiles so they use the same flat slate color as the X-/X+/Z+ neighbors. The lighter ghost tone made them look like a different category of action when they are just origin shortcuts. --- src/pug/templates/control-view.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pug/templates/control-view.pug b/src/pug/templates/control-view.pug index 4e025c3..1d78e01 100644 --- a/src/pug/templates/control-view.pug +++ b/src/pug/templates/control-view.pug @@ -76,11 +76,11 @@ script#control-view-template(type="text/x-template") // Row 2 button.jbtn(@click="jog_fn(-1, 0, 0, 0)") X− - button.jbtn.ghost(@click="showMoveToZeroDialog('xy')") + button.jbtn(@click="showMoveToZeroDialog('xy')") span.lbl XY span Origin button.jbtn(@click="jog_fn(1, 0, 0, 0)") X+ - button.jbtn.ghost(@click="showMoveToZeroDialog('z')") + button.jbtn(@click="showMoveToZeroDialog('z')") span.lbl Z span Origin