From 802cf842a63b866a98e4e418aec3f61656e85cf9 Mon Sep 17 00:00:00 2001 From: Tom Herold Date: Thu, 4 May 2023 14:54:15 +0200 Subject: [PATCH] Fix issues with styling in dark mode on login page (#7052) * fix issues with dark mode and login page * update changelog --- CHANGELOG.unreleased.md | 1 + frontend/stylesheets/dark.less | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.unreleased.md b/CHANGELOG.unreleased.md index c4a3b0a423..32fadf827e 100644 --- a/CHANGELOG.unreleased.md +++ b/CHANGELOG.unreleased.md @@ -23,6 +23,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released - Fixed layouting of used storage space on the organization page. [#7034](https://github.com/scalableminds/webknossos/pull/7034) - Fixed a bug where updating skeleton annotation tree group visibility would break the annotation. [#7037](https://github.com/scalableminds/webknossos/pull/7037) - Fixed importing Neuroglancer Precomputed datasets that have a voxel offset in their header. [#7019](https://github.com/scalableminds/webknossos/pull/7019) +- Fixed an bug where invalid email addresses were not readable in dark mode on the login/signup pages. [#7052](https://github.com/scalableminds/webknossos/pull/7052) ### Removed diff --git a/frontend/stylesheets/dark.less b/frontend/stylesheets/dark.less index 8df7600ffa..2b3e3b8a7d 100644 --- a/frontend/stylesheets/dark.less +++ b/frontend/stylesheets/dark.less @@ -68,4 +68,11 @@ a:hover { .react-flow__minimap-mask { fill: rgba(50, 50, 50, 0.7); } +} + +.login-view { + // TODO: consider removing with Antd-v5 + .ant-input-affix-wrapper-status-error { + background-color: @black !important; + } } \ No newline at end of file