From 8248e6a88f1dfcb43fac657239bf13c72b00ff6f Mon Sep 17 00:00:00 2001 From: Jeremy Thomas Date: Fri, 21 Jul 2017 09:42:57 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 7 ++++--- docs/css/bulma-docs.css | 11 +++++++++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 207676bf..98ffc365 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 c59426db..92942ad4 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;