From eafce659020f5b9a8a88bb6de1a816eb034d9996 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 4cb22744e0..67dff99c5d 100644 --- a/erpnext/public/scss/point-of-sale.scss +++ b/erpnext/public/scss/point-of-sale.scss @@ -611,7 +611,7 @@ padding: var(--padding-sm); &:hover { - background-color: var(--gray-50); + background-color: var(--control-bg); } > .invoice-name-date { @@ -1161,8 +1161,8 @@ } > .new-btn { - background-color: var(--blue-500); - color:white; + background-color: var(--btn-primary); + color: var(--neutral); font-weight: 500; } } -- GitLab