From 13a26fcadb8a64837a4457b48e9f6e23b05c4cc6 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Tue, 28 Feb 2023 12:25:42 +0100 Subject: [PATCH] Fix disabled buttons in mobile view not being hidden --- pixelegg/mobile/fw_mobile.css | 3 +++ pixelegg/mobile/fw_mobile.less | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pixelegg/mobile/fw_mobile.css b/pixelegg/mobile/fw_mobile.css index ace8cb1959..63774ead29 100644 --- a/pixelegg/mobile/fw_mobile.css +++ b/pixelegg/mobile/fw_mobile.css @@ -9028,6 +9028,9 @@ table.egwGridView_grid img.et2_appicon { background-size: 24px 24px !important; border: none; } + body .dialogHeadbar et2-button[disabled] { + display: none; + } body .dialogHeadbar et2-button::part(base) { background: transparent; border: transparent; diff --git a/pixelegg/mobile/fw_mobile.less b/pixelegg/mobile/fw_mobile.less index e0aae325f2..dd42fc1445 100644 --- a/pixelegg/mobile/fw_mobile.less +++ b/pixelegg/mobile/fw_mobile.less @@ -1283,7 +1283,9 @@ .white-svg; } } - + et2-button[disabled] { + display: none; + } et2-button::part(base) { background: transparent; border: transparent;