Merge pull request #6654 from korun/set-default-resize-style-01
CSS: set "resize: vertical" as default for textarea
This commit is contained in:
commit
0c34452840
3 changed files with 10 additions and 1 deletions
|
|
@ -79,6 +79,7 @@ Contributions are very welcome, the hard work is done!
|
|||
* A note regarding ignoring users was added to the failure messages on commenting/liking [#6646](https://github.com/diaspora/diaspora/pull/6646)
|
||||
* Replace sidetiq with sidekiq-cron [#6616](https://github.com/diaspora/diaspora/pull/6616)
|
||||
* Refactor mobile comment section [#6509](https://github.com/diaspora/diaspora/pull/6509)
|
||||
* Set vertical resize as default for all textareas [#6654](https://github.com/diaspora/diaspora/pull/6654)
|
||||
|
||||
## Bug fixes
|
||||
* Destroy Participation when removing interactions with a post [#5852](https://github.com/diaspora/diaspora/pull/5852)
|
||||
|
|
@ -90,7 +91,7 @@ Contributions are very welcome, the hard work is done!
|
|||
* Do not fail when submitting an empty comment in the mobile view [#6543](https://github.com/diaspora/diaspora/pull/6543)
|
||||
* Limit flash message width on small devices [#6529](https://github.com/diaspora/diaspora/pull/6529)
|
||||
* Add navbar on mobile when not logged in [#6483](https://github.com/diaspora/diaspora/pull/6483)
|
||||
* Fix timeago tooltips for reshares [#6648](https://github.com/diaspora/diaspora/pull/6648)
|
||||
* Fix timeago tooltips for reshares [#6648](https://github.com/diaspora/diaspora/pull/6648)
|
||||
|
||||
## Features
|
||||
* Support color themes [#6033](https://github.com/diaspora/diaspora/pull/6033)
|
||||
|
|
|
|||
|
|
@ -20,6 +20,10 @@ textarea {
|
|||
}
|
||||
// scss-lint:enable QualifyingElement
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
// Forms described here are only used on the public pages at the moment
|
||||
.block-form {
|
||||
margin: 20px auto;
|
||||
|
|
|
|||
|
|
@ -33,6 +33,10 @@ body {
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
h3 { margin-top: 0; }
|
||||
.clear { clear: both; }
|
||||
#main { padding: 56px 10px 0 10px; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue