Merge pull request #4487 from arlogn/word-wrap-on-single-post-view
Prevent overflow of strings too long on single page view
This commit is contained in:
commit
99657947a9
2 changed files with 3 additions and 0 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
* Fix size of images in the SPV [#4471](https://github.com/diaspora/diaspora/pull/4471)
|
* Fix size of images in the SPV [#4471](https://github.com/diaspora/diaspora/pull/4471)
|
||||||
* Adjust 404 message description to not leak logged out users if a post exists or not [#4477](https://github.com/diaspora/diaspora/pull/4477)
|
* Adjust 404 message description to not leak logged out users if a post exists or not [#4477](https://github.com/diaspora/diaspora/pull/4477)
|
||||||
* Make I18n system more robust against missing keys in pluralization data
|
* Make I18n system more robust against missing keys in pluralization data
|
||||||
|
* Prevent overflow of too long strings in the single post view [#4487](https://github.com/diaspora/diaspora/pull/4487)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
* Add oEmbed content to the mobile view [#4343](https://github.com/diaspora/diaspora/pull/4353)
|
* Add oEmbed content to the mobile view [#4343](https://github.com/diaspora/diaspora/pull/4353)
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,7 @@
|
||||||
width: auto;
|
width: auto;
|
||||||
p {
|
p {
|
||||||
margin: 0 0 1em 0;
|
margin: 0 0 1em 0;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
.photo_attachments {
|
.photo_attachments {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
|
@ -109,6 +110,7 @@
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
p {
|
p {
|
||||||
margin: 0 0 1em 0;
|
margin: 0 0 1em 0;
|
||||||
|
word-wrap: break-word;
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue