From 7b5003aea87ead50a0a397d8b5b28d01c80cf192 Mon Sep 17 00:00:00 2001 From: Anika Churilova Date: Mon, 9 Dec 2024 11:14:36 +0100 Subject: [PATCH] form: some UI fixed for the deposit form * closes https://github.com/CERNDocumentServer/cds-rdm/issues/163 --- .../less/invenio_theme/theme/collections/form.overrides | 4 ++++ .../less/invenio_theme/theme/elements/input.overrides | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/collections/form.overrides b/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/collections/form.overrides index ccfa260b..90a3cc7f 100644 --- a/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/collections/form.overrides +++ b/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/collections/form.overrides @@ -39,3 +39,7 @@ flex: 1 1 auto; } } + +.ui.form .flashed.message { + z-index: 0 !important; +} diff --git a/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/elements/input.overrides b/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/elements/input.overrides index fff934c3..5c869e32 100644 --- a/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/elements/input.overrides +++ b/invenio_theme/assets/semantic-ui/less/invenio_theme/theme/elements/input.overrides @@ -17,3 +17,7 @@ } } + +.ui.disabled.input, .ui.input:not(.disabled) input[disabled] { + opacity: 1 !important; +}