lobipanel icon indicating copy to clipboard operation
lobipanel copied to clipboard

Bug with minimize function while unpined on IE11

Open Aeryax opened this issue 9 years ago • 4 comments

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.

Aeryax avatar Sep 28 '16 08:09 Aeryax

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

thecodeholic avatar Sep 28 '16 09:09 thecodeholic

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

Aeryax avatar Sep 28 '16 10:09 Aeryax

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

thecodeholic avatar Sep 28 '16 11:09 thecodeholic

Fixed!!! Download new version from github or bower

thecodeholic avatar Oct 05 '16 17:10 thecodeholic