From f7d8979f25432f692993a2fe68dad06d72ae2be8 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Thu, 25 May 2023 13:20:52 +0200 Subject: [PATCH] BUG: fix caosdb-webui#207 --- CHANGELOG.md | 2 ++ src/core/css/webcaosdb.css | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4d3667..3329ba8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +* [#207](https://gitlab.com/caosdb/caosdb-webui/-/issues/207) - Error message + is present but invisible. * [#212](https://gitlab.com/caosdb/caosdb-webui/-/issues/212) - Searching for double values in scientific notation fails * [#199](https://gitlab.com/caosdb/caosdb-webui/-/issues/199) - Linkify creates diff --git a/src/core/css/webcaosdb.css b/src/core/css/webcaosdb.css index ba4bedeb..6ab5ed65 100644 --- a/src/core/css/webcaosdb.css +++ b/src/core/css/webcaosdb.css @@ -51,6 +51,11 @@ footer { margin-right: 8px; } +.caosdb-messages .caosdb-v-message-badge { + background-color: var(--bs-alert-bg); + color: var(--bs-alert-color); +} + div.export-data { display: none; } @@ -446,6 +451,11 @@ body[data-hidden-properties="true"] .caosdb-v-entity-being-edited .caosdb-v-hidd border: 1px solid #C92E86; } +.caosdb-label-entity { + background-color: #666; + border: 1px solid #666; +} + .caosdb-parents-heading { padding-top: 2px; padding-bottom: 2px; -- GitLab