From d550d38908306957c02bb9637b4fd9d716591d1a Mon Sep 17 00:00:00 2001 From: Renaud Michotte Date: Mon, 28 Oct 2019 11:29:07 +0100 Subject: [PATCH] ui: fix flash messages position * Position of flash messages are now displayed on top of the screen, not on top of the page * Closes #232 Co-Authored-by: Renaud Michotte --- rero_ils/static/scss/rero_ils/styles.scss | 2 +- ui/src/styles.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rero_ils/static/scss/rero_ils/styles.scss b/rero_ils/static/scss/rero_ils/styles.scss index ec3984bc46..06392938d1 100644 --- a/rero_ils/static/scss/rero_ils/styles.scss +++ b/rero_ils/static/scss/rero_ils/styles.scss @@ -96,7 +96,7 @@ html [type=button] { } .toast-container { - position: absolute; + position: fixed; z-index: 9999999; top: 0; right: 0; diff --git a/ui/src/styles.scss b/ui/src/styles.scss index 28d81b4f6f..7c5b539d41 100644 --- a/ui/src/styles.scss +++ b/ui/src/styles.scss @@ -53,7 +53,7 @@ typeahead-container { } .toast-container { - position: absolute; + position: fixed; z-index: 9999999; top: 0; right: 0; @@ -87,4 +87,4 @@ typeahead-container { .list-group-item { // padding-left:0; padding-right: 0; -} \ No newline at end of file +}