Compare commits

...

4 Commits

Author SHA1 Message Date
cpsievert
06024839f9 yarn build (GitHub Actions) 2023-08-24 14:13:02 +00:00
Carson
76022492ad Update news 2023-08-24 09:06:49 -05:00
Carson Sievert
0e47ff6e34 Update inst/www/shared/shiny_scss/shiny.scss 2023-08-22 18:31:41 -05:00
Carson
73c49f3c8c Close #3878. fileInput()'s button shouldn't have top-right or bottom-right border-radius 2023-08-22 18:29:42 -05:00
3 changed files with 12 additions and 1 deletions

View File

@@ -1,5 +1,10 @@
# shiny (development version)
## New features and improvements
## Bug fixes
* `fileInput()` no longer has unwanted round corners applied to the `buttonLabel`. (#3879)
# shiny 1.7.5

File diff suppressed because one or more lines are too long

View File

@@ -184,6 +184,12 @@ pre.shiny-text-output {
}
}
// fileInput()'s button should never have a top-right or bottom-right border-radius
.btn-file {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
/* Make sure the filename doesn't extend past the bounds of the container */
.shiny-input-container input[type=file] {
overflow: hidden;