Lachlan Ennis
Lachlan Ennis
I really only fixed the slide right style. But I'll put aside some time now and fix them all.
``` .ladda-button .ladda-spinner ``` In the ladda.css margin-top is -16px, in ladda.scss its 0. Not sure how this is supposed to work.
margin-top also has different values for the *.css and *.min.css This would explain why I was getting the error in MVC, since I used the non-minified stylesheet and had bundling...
OK. Looks like when you did the update "Cleanup and update Ladda to 0.9.4" you didn't update the non-minified files. This is the cause of the issue.
I ended up using the minified files instead. Its no ideal though.
@RussKie, is this being deprecated in .Net7 and removed in .Net8?
@JeremyKuhne I have created an issue here to help centralize issues/information around CSWin32. Before anything gets too deep, the Winforms team should decide on how they want to split up...
I have asked the CsWin32 team about the `NativeMethods.txt` in https://github.com/microsoft/CsWin32/issues/606. AFAIK, each `NativeMethods.txt` file needs to be in its own folder and added to additionalfiles. So in the context...
@JeremyKuhne do you want all the generated code in one file? If not, you can use the following in NativeMethods.json ``` { "$schema": "https://aka.ms/CsWin32.schema.json", "emitSingleFile": false } ```
> _Personal opinion_: I like how we have separation per containing dll (i.e., Interop.User32, Interop.Gdi32, etc). It'd be great to retain the separation if possible, e.g., /User32/NativeMethods.txt, /Gdi32/NativeMethods.txt, /Kernel32/NativeMethods.txt, etc....