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 35 opacity: 0.2;
36 36 border: solid;
37 37 position: absolute;
  38 + /*Bug #24255: Mac > DA > Body Navigator is not appear properly.*/
  39 + height:14px !important;
38 40 }
39 41  
40 42 #wrapper {
... ... @@ -44,7 +46,7 @@
44 46 margin: 20px auto;
45 47 }
46 48  
47   - .tooltip-custom + .tooltip > .tooltip-inner {
  49 + .tooltip-custom + .tooltip > .tooltip-inner {
48 50 background-color: #fff;
49 51 border: 1px solid #000;
50 52 color: #000;
... ... @@ -290,8 +292,8 @@
290 292 <img src="~/../content/images/DA/navigator-view.png" style="height:30px; width:50px" />
291 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 297 <img id="navimg" alt="" />
296 298 <div id="draggable" class="draggable ui-widget-content dragdivposition" ng-mouseup="ScrollCanvasDiv()">
297 299 </div>
... ... @@ -473,6 +475,13 @@
473 475 <script src="libs/jquery/jquery_plugin/slider-pips/jquery-ui-slider-pips.js"></script>
474 476 <script>
475 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 485 $("#transparencyScale").draggable();
477 486 $("#draggable").draggable({ containment: "#containment-wrapper", scroll: false });
478 487 });
... ... @@ -501,8 +510,6 @@
501 510 $(".custom-tooltip2").css("display", "none");
502 511 });
503 512  
504   -
505   -
506 513  
507 514 });
508 515 </script>
... ...