Carson Sievert

Results 193 comments of Carson Sievert

Ah yea the alignment should be fixed FWIW, the styling looks different because shiny intentionally adds `input-group` classes whereas the example on the Bootswatch site doesn't

The SVGs currently add up to 4.5Mb, so it probably makes sense to provide them in a separate package

There's now a start on this in https://github.com/rstudio/bsicons

Maybe `setCurrentTheme()` could have `watch` arg which would crawl the `theme` searching for `sass::sass_file()`s replacing them with a `reactiveFileReader()` version ```r observe({ session$setCurrentTheme(theme, watch = TRUE) }) ``` BTW, this...

I'm not aware of one, but I do know that Bootstrap itself is doing more to be a11y compliant (i.e., Bootstrap 5 should be a bit better than Bootstrap 4...

Most bootswatch themes aren't very well integrated with Bootstrap Sass variables (in most cases they add hard coded CSS styles to achieve their custom styling), so it's not particularly surprising...

I think you can workaround this bug by replacing `nunito` with `font_face("Nunito", weight = c(400, 700))`?

Oh actually, I misunderstood what you're trying to do, I'm not sure if that workaround works if you need the 2 different weights to point to 2 different files. Any...

> I would be very glad to somehow have the possibility to use custom fonts (contained in multiple files) within shiny I hope we'll be able fix the core issue...

Thanks, we'll have to think about how this should interplay with `html_document()`'s existing `highlight` param (it probably makes sense to set `highlight = NULL` if `theme` is a `bs_theme()` and...