Merge pull request #4471 from svbergerem/fix-size-of-images-in-spv

Fix size of images in the SPV
This commit is contained in:
Jonne Haß 2013-08-29 21:36:38 +02:00
commit 27f671814b
2 changed files with 10 additions and 3 deletions

View file

@ -9,6 +9,7 @@
* Fix style of contacts in profile sidebar [#4451](https://github.com/diaspora/pull/4451)
* Fix profile mobile when logged out [#4464](https://github.com/diaspora/pull/4464)
* Fix preview with more than one mention [#4450](https://github.com/diaspora/diaspora/issues/4450)
* Fix size of images in the SPV [#4471](https://github.com/diaspora/diaspora/pull/4471)
## Features
* Add oEmbed content to the mobile view [#4343](https://github.com/diaspora/diaspora/pull/4353)

View file

@ -68,12 +68,18 @@
padding-bottom: 10px;
text-align: center;
img {
&.big_stream_photo { display: block; }
display: inline;
&.big_stream_photo {
display: block;
max-width: 90%;
}
&.thumb_small {
display: inline;
max-width: 50px;
max-height: 50px;
}
margin-left: auto;
margin-right: auto;
padding-bottom: 5px;
max-width: 90%;
}
}
.oembed {