Yves Goergen

Results 295 comments of Yves Goergen

I'm using this to replace my ASP.NET Core 2.2 LoginRouter that basically redirects (internally) all requests over to the login page unless the user is already authenticated. This keeps the...

Also, this whole things fails because the parameter `RouteValueDictionary values` is null, always. What should I do? Update: I could fix(?) that null thing with a dummy pattern. Now my...

It looks like `:where()` and `:is()` are now completely unmodified with csso 5.0.4. No minifying is happening at all, multiline selectors are kept as-is and not pulled together into a...

What's the difference of these additional spaces? I'm not aware of any situation where it's relevant.

I still don't need those extra spaces and cannot imagine a scenario where I would ever need it. CSS usually doesn't preserve such spaces and any application that now does...

The German texts sound a bit strange. There are informal texts like "Finde …" or "Setze …" and formal texts like "Verwenden Sie …". I always try to avoid this...

Workaround: ```js mapContainer.querySelector("div.mapboxgl-ctrl-attrib.mapboxgl-compact").style.boxSizing = "content-box"; ``` This style might be included in mapbox to fix the issue.

While the theory sounds good, and I have accepted the new global style for now (using the inherit rules), it doesn't work for the map. I can set the content-box...

Any news here? I've upgraded the map from 2.1.1 to 2.9.2, my content-box-inherit style is still in use and has so far worked great everywhere. But I still need my...

Workaround: Disable the text shadow on the tooltip text. Here's my code snippet for a custom class: ``` css .hint--noshadow:after { text-shadow: none; } ```