Merge pull request #5450 from svbergerem/exceeding-profile-content
Content shouldn't exceed the profile sidebar
This commit is contained in:
commit
5ccdcc0b95
2 changed files with 3 additions and 0 deletions
|
|
@ -97,6 +97,7 @@ This is disabled by default since it requires the installation of additional pac
|
|||
* Fix a few issues on Bootstrap pages [#5401](https://github.com/diaspora/diaspora/pull/5401)
|
||||
* Improve handling of the `more` link on mobile stream pages [#5400](https://github.com/diaspora/diaspora/pull/5400)
|
||||
* Fix prefilling publisher after getting started [#5442](https://github.com/diaspora/diaspora/pull/5442)
|
||||
* Fix overflow in profile sidebar [#5450](https://github.com/diaspora/diaspora/pull/5450)
|
||||
|
||||
## Features
|
||||
* Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105)
|
||||
|
|
|
|||
|
|
@ -112,6 +112,8 @@
|
|||
ul#profile_information {
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
overflow-x: hidden;
|
||||
word-wrap: break-word;
|
||||
> li {
|
||||
margin-bottom: 2em;
|
||||
h4 { font-weight: bold; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue