Compare commits

...

2 Commits

Author SHA1 Message Date
Barbara Borges Ribeiro
da6238d954 added news item 2017-03-30 20:24:49 +01:00
Joe Cheng
1192617d62 Fix #1637: Outputs stay faded on MS Edge 2017-03-30 10:11:14 -07:00
2 changed files with 9 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ This is a maintenance release of Shiny, mostly aimed at fixing bugs and introduc
### Minor new features and improvements
* Fixed [#1637](https://github.com/rstudio/shiny/issues/1637): Outputs stay faded on MS Edge. ([#1640](https://github.com/rstudio/shiny/pull/1640))
* Addressed [#1348](https://github.com/rstudio/shiny/issues/1348) and [#1437](https://github.com/rstudio/shiny/issues/1437) by adding two new arguments to `radioButtons()` and `checkboxGroupInput()`: `choiceNames` (list or vector) and `choiceValues` (list or vector). These can be passed in as an alternative to `choices`, with the added benefit that the elements in `choiceNames` can be arbitrary UI (i.e. anything created by `HTML()` and the `tags()` functions, like icons and images). While the underlying values for each choice (passed in through `choiceValues`) must still be simple text, their visual representation on the app (what the user actually clicks to select a different option) can be any valid HTML element. See `?radioButtons` for a small example. ([#1521](https://github.com/rstudio/shiny/pull/1521))
* Updated `tools/README.md` with more detailed instructions. ([##1616](https://github.com/rstudio/shiny/pull/1616))

View File

@@ -95,6 +95,13 @@ pre.shiny-text-output.noplaceholder:empty {
font-weight: inherit;
}
/* Work around MS Edge transition bug (issue #1637) */
@supports (-ms-ime-align:auto) {
.shiny-bound-output {
transition: 0;
}
}
.recalculating {
opacity: 0.3;
transition: opacity 250ms ease 500ms;