mirror of
https://github.com/jgthms/bulma.git
synced 2025-01-09 15:44:25 +00:00
Update changelog
This commit is contained in:
parent
8f6268c9f4
commit
8248e6a88f
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user