In newly migrated pages, there is a "blurry" effect on submenu icons for edit and remove options. This might be related to a change in their size, which should not happen.
Ex :
This happened to me before as well, make sure your browser zoom is at 100%, but I guess it should be fixed anyway.
I found out that this behavior is associated with bootstrap dropdown, so i doubt we can do anything.
The thing is that on toggle it puts style with transform:translate3d('x', 'y', 0) and this causes the blur. There are workarounds for this particular css attribute (for example putting transform:translateX('x') translateY('y')), but we cannot change the behavior of bootstrap anyway.
Alright thanks for your feedback @zuk3975 , since there's nothing we can do yet, I remove it from the 1.7.6 kanban.
@matks , for a future version we'll see if there's something we can do to improve it.
It is easy to fix adding single line of code.
You can just turn off the transform placement on Popper to make it only use top/left for positioning instead. Then you can use transform for any animations/transitions as you wish.
Popper.Defaults.modifiers.computeStyle.gpuAcceleration = false;
https://github.com/twbs/bootstrap/issues/23378#issuecomment-324750360
Still unfixable without a bootstrap update of UIKit and BO Themes
Alright so I guess this will be fixed with 178 once the UI kit has been updated ?
Well it seems like I can yes, gonna work on this
On hold, waiting for the merge of the UI kit.
@davidglezz It will probably fixed on next uikit release, or on new major version :/
I say that because we noticed that it wasn't here with uikit on the develop branch, but overwhise it will probably be fixed later with the PR you linked, thanks :)
Looks fine now on develop, should be fixed :)
Most helpful comment
Looks fine now on develop, should be fixed :)