aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/styles/common.css
diff options
context:
space:
mode:
authorSonsino, Ofir (os0695) <os0695@intl.att.com>2018-07-10 14:20:54 +0300
committerSonsino, Ofir (os0695) <os0695@intl.att.com>2018-07-10 14:20:54 +0300
commitc72d565bb58226b20625b2bce5f0019046bee649 (patch)
tree8658e49595705b02e47ddc14afa20d6bb7123547 /vid-app-common/src/main/webapp/app/vid/styles/common.css
parentef8a6b47847012fd59ea20da21d8d3d7c4a301ed (diff)
Merge 1806 code of vid-common
Change-Id: I75d52abed4a24dfe3827d79edc4a2938726aa87a Issue-ID: VID-208 Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/styles/common.css')
-rw-r--r--vid-app-common/src/main/webapp/app/vid/styles/common.css89
1 files changed, 89 insertions, 0 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/styles/common.css b/vid-app-common/src/main/webapp/app/vid/styles/common.css
index 35f2e33f..9377c3f6 100644
--- a/vid-app-common/src/main/webapp/app/vid/styles/common.css
+++ b/vid-app-common/src/main/webapp/app/vid/styles/common.css
@@ -63,6 +63,61 @@ html, body {
font-size:14px;
}
+html {
+ height: 100%;
+}
+
+body {
+ display: flex;
+ flex-direction: column;
+ min-height: 100%;
+}
+
+.applicationWindow {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+}
+
+#mContent {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+}
+.content.modal-open .body-content-jsp{
+ margin: 0 auto;
+}
+.content .body-content-jsp > div.ng-scope > div.overlay{
+ display: none;
+}
+.content.modal-open .body-content-jsp .service-models-page .overlay{
+ display: block !important;
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 3004;
+ background-color: #000;
+ opacity: 0.5;
+}
+
+.content.modal-open .body-content-jsp .service-models-page .service-model-content{
+ z-index: 3005;
+ margin: 0 auto;
+ flex: none;
+ width: 1100px;
+ padding: 10px;
+}
+.content.modal-open{
+ margin: 0 !important;
+}
+
+.body-content-jsp {
+ flex: 1;
+}
+
.button--inactive {
border: none !important;
}
@@ -114,3 +169,37 @@ input:focus:invalid {
border-color: Tomato;
box-shadow: none;
}
+
+iframe {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border:0;
+}
+
+iframe.popup{
+ width: 1103px;
+ height: 691px;
+}
+
+/*todo: remove. this a temporary fix for the sub-interface popup not showing as a page beside the sidebar. currently showing it in full screen.*/
+iframe.iframeDialog {
+ width: 100vw;
+ height: 100vh;
+ position: fixed;
+}
+
+.service-models-page {
+ flex: 1;
+ display: flex;
+ min-height: 700px;
+}
+
+.service-model-content {
+ flex: 1;
+}
+
+.service-model-content .popupContents {
+ padding: 0 !important;
+}