Drop down being cut in plugin view 53/49753/2
authorIdan Amit <ia096e@intl.att.com>
Thu, 31 May 2018 12:45:03 +0000 (15:45 +0300)
committerMichael Lando <ml636r@att.com>
Thu, 31 May 2018 17:06:07 +0000 (17:06 +0000)
Fixed drop down being cut down in plugin view

Change-Id: I8d5895231e1e921c0c07df563a61039f207f253c
Issue-ID: SDC-1367
Signed-off-by: Idan Amit <ia096e@intl.att.com>
catalog-ui/src/app/ng2/components/ui/plugin/plugin-frame.component.less
catalog-ui/src/app/ng2/services/event-bus.service.ts

index d2d4c98..d97c345 100644 (file)
@@ -7,6 +7,6 @@
         top: 3px;
         left: 2px;
         position: relative;
-        z-index: 1030
+        background-color: white;
     }
 }
index 10990e2..664ce35 100644 (file)
@@ -54,7 +54,12 @@ export class EventBusService extends BasePubSub {
     }
 
     public disableNavigation(isDisable: boolean) {
+        let iframes = document.getElementsByClassName("plugin-iframe");
+
         if (isDisable) {
+            _.forEach(iframes, (iframeElement: HTMLElement) => {
+                iframeElement.style.zIndex = '1300';
+            });
             let disableDiv = document.createElement('div');
             disableDiv.style.cssText = "position: fixed;\n" +
                 "z-index: 1029;\n" +
@@ -68,6 +73,10 @@ export class EventBusService extends BasePubSub {
         }
         else {
             document.getElementsByClassName("disable-navigation-div")[0].remove();
+
+            _.forEach(iframes, (iframeElement: HTMLElement) => {
+                iframeElement.style.zIndex = '';
+            });
         }
     }