From 95a22d296be6756cdfc0ddb2619264edec3878d2 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Wed, 21 Dec 2022 11:14:01 +0530 Subject: [PATCH 1/2] icon visibility issue in Highcontrast mode --- core/css/server.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index 8455f063..c196c1dd 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1724,3 +1724,7 @@ .margin-top-10{ margin-top: 10px; } +body.theme--highcontrast.theme--dark span.material-design-icon.dots-horizontal-icon, +body.theme--highcontrast.theme--dark svg.material-design-icon__svg{ + color: var(--color-main-text); +} \ No newline at end of file -- GitLab From e95f9a359f0b65d0bc618d65a66a86989adc164b Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Wed, 21 Dec 2022 11:17:40 +0530 Subject: [PATCH 2/2] icon visibility issue in Highcontrast mode --- core/css/server.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index c196c1dd..55416019 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1724,7 +1724,7 @@ .margin-top-10{ margin-top: 10px; } -body.theme--highcontrast.theme--dark span.material-design-icon.dots-horizontal-icon, -body.theme--highcontrast.theme--dark svg.material-design-icon__svg{ - color: var(--color-main-text); +body.theme--highcontrast span.material-design-icon.dots-horizontal-icon, +body.theme--highcontrast svg.material-design-icon__svg{ + color: #fff; } \ No newline at end of file -- GitLab