From: Jeremy Thomas Date: Fri, 21 Jul 2017 07:42:57 +0000 (+0200) Subject: Update changelog X-Git-Tag: 0.4.4~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8248e6a88f1dfcb43fac657239bf13c72b00ff6f;p=thirdparty%2Fbulma.git Update changelog --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 207676bf2..98ffc3656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,14 @@ ### Issues closed +* Fix #26 `.textarea` element will honors `[rows]` attribute * Fix #887 `body` scrollbar -* Fix #715 `help` class behaviour in horizontal form `is-grouped` field +* Fix #715 `.help` class behaviour in horizontal form `is-grouped` field * Fix #842 Adding modifiers in `navbar` -* Fix #841 `container` as direct child of `navbar` moves `navbar-menu` below `navbar-brand` +* Fix #841 `.container` as direct child of `.navbar` moves `.navbar-menu` below `.navbar-brand` * Fix #861 Box in hero as text and background white * Fix #852 charset and version number -* Fix #856 JavaScript `nav-burger` example +* Fix #856 JavaScript `.nav-burger` example * Fix #821 Notification strong color ## 0.4.3 diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css index c59426dbb..92942ad45 100644 --- a/docs/css/bulma-docs.css +++ b/docs/css/bulma-docs.css @@ -2212,14 +2212,21 @@ input[type="submit"].button { .textarea { display: block; - max-height: 600px; max-width: 100%; - min-height: 120px; min-width: 100%; padding: 0.625em; resize: vertical; } +.textarea:not([rows]) { + max-height: 600px; + min-height: 120px; +} + +.textarea[rows] { + height: unset; +} + .checkbox, .radio { cursor: pointer;