I'm trying to change the look of some of my Shiny UI elements to make them more in line with the aesthetics of the rest of a website.
Specifically, I'm looking for a way to remove the rounded edges of the selectInput boxes to make it look something like this:
Secondly, I was hoping to make a numericInput box that looks similar to the following:
Is there an easy way to do this? I'm pretty comfortable in R, but don't know a huge amount of css or html. I'd thought about flanking a numericInput with actionButton elements to use as plus/minus keys, but haven't figured out how to make them look like the above.
Are there any style attributes or javascript libraries I can incorporate to achieve either of these two things?


border-radius, either setting that to 0 on the style or adding a css class withborder-radius: 0should fix that problem - ash