Skip to content

Commit

Permalink
override shiny-input-container width to 100% (#222)
Browse files Browse the repository at this point in the history
* override shiny-input-container width to 100%

* news item
  • Loading branch information
schloerke authored May 15, 2019
1 parent 8a1d754 commit 24687e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
learnr 0.9.2.9000 (unreleased)
===========

* Question width will expand to the container width. ([#222](https://github.com/rstudio/learnr/pull/222))

* Added tabset support. ([#219](https://github.com/rstudio/learnr/pull/219) [#213](https://github.com/rstudio/learnr/issues/213))

* Fixed a spurious console warning when running exercises using Pandoc 2.0. ([#154](https://github.com/rstudio/learnr/issues/154))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,8 @@
display: inline-block;
}
}

/* override the width to be 100%, not 300px wide */
.shiny-input-container:not(.shiny-input-container-inline) {
width: 100%;
}

0 comments on commit 24687e1

Please sign in to comment.