Jim Fisk
Jim Fisk
This makes sense, I think I was just trying to avoid an ever escalating z-index battle. The general plan is to have the least specific CSS defaults as possible, so...
Hi @notramo, I just took a look, it seems like our `nav` currently has a `z-index: 10;`: https://github.com/plentico/plenti/blob/c585291a8e573752c2f9df731c554434a1e73452/defaults/core/cms/admin_menu.svelte#L202 The `.sidenav` has a `z-index: 1;`: https://github.com/plentico/plenti/blob/c585291a8e573752c2f9df731c554434a1e73452/defaults/core/cms/admin_menu.svelte#L226 And our `.modal-wrapper` class has...
@notramo were you able to get a z-index override working for your project?
Yeah `window` is only available for CSR. During the build we create HTML fallbacks using SSR, so `window` will not be available because there isn't a browser at that time....
Hi @Fankhauser-Dominik, this is a totally reasonable request, unfortunately Plenti is not great at working with other packages at the moment. At the core we try to take the unbundled...
Yeah I'm having trouble getting it working as well. A couple of problems are holding this back: 1. Plenti doesn't have typescript support (https://github.com/plentico/plenti/issues/47) 2. Plenti can't import CSS files,...
Thanks for flagging this @notramo. Unfortunately upgrading Svelte manually breaks Plenti. This is known issue: - https://github.com/plentico/plenti/issues/231#issuecomment-1297299464 - https://github.com/plentico/plenti/issues/138 The next big phase for Plenti is improving the compilation step,...
Great idea @notramo, we could implement something like this when using the local server (`plenti serve`). Since the deployed applications rely heavily on CI to run, I do want to...
Discussion about leveraging Bud's Svelte compiler API: https://github.com/livebud/bud/discussions/353
> the way we're running Gopack in general is redundant: we're re-reading files already written to the FS during the Client build, updating the content and re-writing them back to...