Carson Sievert
Carson Sievert
Commenting to keep open
Commenting to keep open
Commenting to keep open
Thanks for the report! It seems like, if we take on any changes, they'll be in bslib, so I'll be transferring there. Also, could you elaborate a bit on why...
Oh interesting. I kind of like the idea of `page_attributes()`, which could be implemented as a web components that add/removes attributes on the `document.body` during `connectedCallback()`/`disconnectedCallback()` ?
> being able to create a "multipage sidebar dashboard" would make this even better :D You can make [multi-page sidebar layouts](https://rstudio.github.io/bslib/articles/dashboards/index.html#multi-page). It's just that, currently, navigation must be in the...
> I'm starting to think that the bs3compat bundle should be a separate set of dependencies that we could attach directly to specific components, I agree that we should probably...
You can do a good amount of this today via `tagAppendAttributes()`'s new-ish `.cssSelector`: ```r library(bslib) library(htmltools) navset_card_pill(nav_panel("A", "a"), nav_panel("B", "b")) |> tagAppendAttributes(class = "justify-content-center", .cssSelector = ".nav") ``` Note that...
The `overflow:visible` trick will work for a single `card()`, but similar issues will occur if you put the `card()` in another parent container with `overflow:auto`. As a more general workaround,...
I feel like there might be some old issues that discuss it...I can't think of any reason not to off the top of my head, but I'm sure it has...