mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-07 05:04:58 -05:00
33 lines
629 B
CSS
33 lines
629 B
CSS
body.disconnected {
|
|
background-color: #999;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
table.data {
|
|
width: auto;
|
|
}
|
|
table.data td[align=right] {
|
|
font-family: monospace;
|
|
text-align: right;
|
|
}
|
|
|
|
.shiny-output-error {
|
|
color: red;
|
|
}
|
|
|
|
.jslider {
|
|
/* Fix jslider running into the control above it */
|
|
margin-top: 18px;
|
|
}
|
|
.jslider-value {
|
|
/* Remove box around jslider values on colored bg */
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.recalculating {
|
|
opacity: 0.3;
|
|
transition: opacity 250ms ease 500ms;
|
|
-moz-transition: opacity 250ms ease 500ms;
|
|
-webkit-transition: opacity 250ms ease 500ms;
|
|
-o-transition: opacity 250ms ease 500ms;
|
|
} |