Files
shiny/inst/www/shared/shiny.css
Joe Cheng 1b3cf52a17 More control over slider animation
- Slider now takes animate argument that expects NULL, TRUE, FALSE, or a list that can be constructed using animationOptions()
- Update examples/05_sliders to use new animation format
- Tweak spacing around slider
2012-07-27 14:45:22 -07:00

57 lines
1007 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;
}
span.jslider {
margin-bottom: 12px;
}
.slider-animate-container {
text-align: right;
margin-top: -9px;
}
.slider-animate-button {
opacity: 0.5;
}
.slider-animate-button .pause {
display: none;
}
.slider-animate-button.playing .pause {
display: inline;
}
.slider-animate-button .play {
display: inline;
}
.slider-animate-button.playing .play {
display: none;
}