Carson Sievert

Results 165 issues of Carson Sievert

For instance, for `bs_add_rules(theme, rules)`, what are rules (a character vector)?

documentation

And perhaps make it default to `$headings-font-family`? cc @apreshill

- [ ] `$font-size-base`? (would it makes sense to add a new slider input type?) - [ ] Link styles (i.e., `$link-color`)? - [ ] `$border-radius` (probably wants to be...

Themer

https://github.com/twbs/icons

help wanted

It appears utility classes are responsible for about 1/2 of Bootstrap CSS: ```r bs_size % bs_size() #> Error: The target selector was not found. #> Use "@extend .text-muted !optional" to...

enhancement

For example, ```r library(plotly) library(leaflet) library(sf) nc % st_read() %>% st_transform(4326) %>% highlight_key() map % addTiles() %>% addPolygons( opacity = 1, color = 'white', weight = .25, fillOpacity = .5,...

This continues work from #281. The idea is to have leaflet respond to plotly's "advanced" crosstalk selection options (e.g., [dynamically altering selection colour and persistent selection](https://cpsievert.github.io/plotly_book/images/plotlyLeaflet.gif)) I'd still consider this...

For example, I'd expect the following to generate `foo`: ```python from dominate.tags import * b = button("foo") with b: attr(className = "bar") attr(className = "baz") print(b) ``` ```html foo ```...

May want to consider programmatically constructing classes using https://developer.mozilla.org/en-US/docs/Web/HTML/Element For reference, this is how the `{htmltools}` package queries all non-obsolete tags https://github.com/rstudio/htmltools/blob/bc226a3/scripts/generate_known_tags.R#L37 Happy to stab at a PR there's interest...