From 52f988930f5fe4295223789506fdc344acb0b23c Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Fri, 28 Mar 2025 08:54:51 +0530 Subject: [PATCH] fix: pos button and on hover color (#46762) * fix: pos button and on hover color Changed the POS 'New Order' button color to frappe's color scheme and fixed the on hover text color on 'Toggle Recent Orders' * fix: on hover text unreadable in dark mode --- erpnext/public/scss/point-of-sale.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/public/scss/point-of-sale.scss b/erpnext/public/scss/point-of-sale.scss index 14ec2b0c15..368013ec18 100644 --- a/erpnext/public/scss/point-of-sale.scss +++ b/erpnext/public/scss/point-of-sale.scss @@ -607,7 +607,7 @@ padding: var(--padding-sm); &:hover { - background-color: var(--gray-50); + background-color: var(--control-bg); } > .invoice-name-date { @@ -1157,8 +1157,8 @@ } > .new-btn { - background-color: var(--blue-500); - color: white; + background-color: var(--btn-primary); + color: var(--neutral); font-weight: 500; } } -- GitLab