Commit f632c046e3a63ada9e810ed6e175a656eb00bb2c

Authored by unknown
1 parent 88ba0c91

24255 : Mac > DA > Body Navigator is not appear properly.

400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html
@@ -35,6 +35,8 @@ @@ -35,6 +35,8 @@
35 opacity: 0.2; 35 opacity: 0.2;
36 border: solid; 36 border: solid;
37 position: absolute; 37 position: absolute;
  38 + /*Bug #24255: Mac > DA > Body Navigator is not appear properly.*/
  39 + height:14px !important;
38 } 40 }
39 41
40 #wrapper { 42 #wrapper {
@@ -44,7 +46,7 @@ @@ -44,7 +46,7 @@
44 margin: 20px auto; 46 margin: 20px auto;
45 } 47 }
46 48
47 - .tooltip-custom + .tooltip > .tooltip-inner { 49 + .tooltip-custom + .tooltip > .tooltip-inner {
48 background-color: #fff; 50 background-color: #fff;
49 border: 1px solid #000; 51 border: 1px solid #000;
50 color: #000; 52 color: #000;
@@ -290,8 +292,8 @@ @@ -290,8 +292,8 @@
290 <img src="~/../content/images/DA/navigator-view.png" style="height:30px; width:50px" /> 292 <img src="~/../content/images/DA/navigator-view.png" style="height:30px; width:50px" />
291 </button> 293 </button>
292 294
293 - <div class="dropdown-menu active" id="navigatorDiv" style="min-height:auto; min-width:auto; ">  
294 - <div id="containment-wrapper" align="center" style="min-width:auto;height:119px; "> 295 + <div class="dropdown-menu active" id="navigatorDiv" style="min-height: initial; min-width: initial; ">
  296 + <div id="containment-wrapper" align="center" style="min-width: initial; height: 119px; ">
295 <img id="navimg" alt="" /> 297 <img id="navimg" alt="" />
296 <div id="draggable" class="draggable ui-widget-content dragdivposition" ng-mouseup="ScrollCanvasDiv()"> 298 <div id="draggable" class="draggable ui-widget-content dragdivposition" ng-mouseup="ScrollCanvasDiv()">
297 </div> 299 </div>
@@ -473,6 +475,13 @@ @@ -473,6 +475,13 @@
473 <script src="libs/jquery/jquery_plugin/slider-pips/jquery-ui-slider-pips.js"></script> 475 <script src="libs/jquery/jquery_plugin/slider-pips/jquery-ui-slider-pips.js"></script>
474 <script> 476 <script>
475 $(function () { 477 $(function () {
  478 +
  479 +
  480 + // issue in navigator image in internet explorer
  481 + if ($.browser.msie == true) {
  482 + $("#navigatorDiv").css({"min-width":"auto", "min-height":"auto"});
  483 + $("#containment-wrapper").css("min-width", "auto");
  484 + }
476 $("#transparencyScale").draggable(); 485 $("#transparencyScale").draggable();
477 $("#draggable").draggable({ containment: "#containment-wrapper", scroll: false }); 486 $("#draggable").draggable({ containment: "#containment-wrapper", scroll: false });
478 }); 487 });
@@ -501,8 +510,6 @@ @@ -501,8 +510,6 @@
501 $(".custom-tooltip2").css("display", "none"); 510 $(".custom-tooltip2").css("display", "none");
502 }); 511 });
503 512
504 -  
505 -  
506 513
507 }); 514 });
508 </script> 515 </script>