Add "block" to active modals
When a modal is active make it blocked so it can be viewed.
The modals such as confirming activating an image were not
visible. This change makes those modal visible when active.
Tested: Activated several images on a Witherspoon system.
Change-Id: I6667af017ea397344df6b6ed7e08949ffb4a3c55
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/app/common/styles/elements/modals.scss b/app/common/styles/elements/modals.scss
index 3ca3092..396b46e 100644
--- a/app/common/styles/elements/modals.scss
+++ b/app/common/styles/elements/modals.scss
@@ -39,6 +39,7 @@
.modal.active{
top: 25%;
@include fastTransition-all;
+ display: block;
}
.modal .page-header {
@@ -76,4 +77,4 @@
margin-right: 0;
}
}
-}
\ No newline at end of file
+}