You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting with #3957, uiOutput() (and conditionalPanel()) containers started getting display: contents;. Turns out this is problematic for the .recalculating { opacity: 0.3; } that shiny adds to output containers. Consider the following example which now fails to dim in opacity when recalculating (since the output container div is now display: contents;, opacity no longer applies):
* Close#4027: Fix opacity dimming on recalculating uiOutput(). Also, only apply display:content when there are child elements
* Update inst/www/shared/shiny_scss/shiny.bootstrap5.scss
* Add news item
Starting with #3957,
uiOutput()
(andconditionalPanel()
) containers started gettingdisplay: contents;
. Turns out this is problematic for the.recalculating { opacity: 0.3; }
that shiny adds to output containers. Consider the following example which now fails to dim in opacity when recalculating (since the output container div is nowdisplay: contents;
,opacity
no longer applies):The text was updated successfully, but these errors were encountered: