Bläddra i källkod

Update changelog

Jeremy Thomas 8 år sedan
förälder
incheckning
8248e6a88f
2 ändrade filer med 13 tillägg och 5 borttagningar
  1. 4 3
      CHANGELOG.md
  2. 9 2
      docs/css/bulma-docs.css

+ 4 - 3
CHANGELOG.md

@@ -4,13 +4,14 @@
 
 
 ### Issues closed
 ### Issues closed
 
 
+* Fix #26 `.textarea` element will honors `[rows]` attribute
 * Fix #887 `body` scrollbar
 * 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 #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 #861 Box in hero as text and background white
 * Fix #852 charset and version number
 * Fix #852 charset and version number
-* Fix #856 JavaScript `nav-burger` example
+* Fix #856 JavaScript `.nav-burger` example
 * Fix #821 Notification strong color
 * Fix #821 Notification strong color
 
 
 ## 0.4.3
 ## 0.4.3

+ 9 - 2
docs/css/bulma-docs.css

@@ -2212,14 +2212,21 @@ input[type="submit"].button {
 
 
 .textarea {
 .textarea {
   display: block;
   display: block;
-  max-height: 600px;
   max-width: 100%;
   max-width: 100%;
-  min-height: 120px;
   min-width: 100%;
   min-width: 100%;
   padding: 0.625em;
   padding: 0.625em;
   resize: vertical;
   resize: vertical;
 }
 }
 
 
+.textarea:not([rows]) {
+  max-height: 600px;
+  min-height: 120px;
+}
+
+.textarea[rows] {
+  height: unset;
+}
+
 .checkbox,
 .checkbox,
 .radio {
 .radio {
   cursor: pointer;
   cursor: pointer;