Merge pull request #6654 from korun/set-default-resize-style-01

CSS: set "resize: vertical" as default for textarea
This commit is contained in:
Steffen van Bergerem 2016-02-06 11:58:11 +01:00
commit 0c34452840
3 changed files with 10 additions and 1 deletions

View file

@ -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) * 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) * 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) * 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 ## Bug fixes
* Destroy Participation when removing interactions with a post [#5852](https://github.com/diaspora/diaspora/pull/5852) * 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) * 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) * 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) * 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 ## Features
* Support color themes [#6033](https://github.com/diaspora/diaspora/pull/6033) * Support color themes [#6033](https://github.com/diaspora/diaspora/pull/6033)

View file

@ -20,6 +20,10 @@ textarea {
} }
// scss-lint:enable QualifyingElement // scss-lint:enable QualifyingElement
textarea {
resize: vertical;
}
// Forms described here are only used on the public pages at the moment // Forms described here are only used on the public pages at the moment
.block-form { .block-form {
margin: 20px auto; margin: 20px auto;

View file

@ -33,6 +33,10 @@ body {
padding: 0; padding: 0;
} }
textarea {
resize: vertical;
}
h3 { margin-top: 0; } h3 { margin-top: 0; }
.clear { clear: both; } .clear { clear: both; }
#main { padding: 56px 10px 0 10px; } #main { padding: 56px 10px 0 10px; }