thecodeholic / lobipanel

jQuery plugin for bootstrap panels. It extends panels with several common and useful functions.
MIT License
168 stars 75 forks source link

Bug with minimize function while unpined on IE11 #22

Open Aeryax opened 7 years ago

Aeryax commented 7 years ago

Hi,

When I try to minimize two or more unpined panels on IE11, these are stacking on the bottom left corner. Here is a screenshot: image

It is working well on FF/Chrome. Do you think it is possible to fix it ?

Thanks for your work.

thecodeholic commented 7 years ago

Thanks for creating issue.

try to add the following css to your project

.lobipanel.panel-unpin.panel-minimized > .panel-heading .dropdown .dropdown-menu{
  min-width: 0;
}

.lobipanel.panel-unpin.panel-minimized{
  position: static;
}

This is because IE does not have position: initial or min-width: initial.

Let me know if this helps

Aeryax commented 7 years ago

Thanks, that was a fast answer :smile: It works like a charm.

thecodeholic commented 7 years ago

Great!! I will change this in next stable release.

thecodeholic commented 7 years ago

Fixed!!! Download new version from github or bower