Merge pull request #952 from owncloud/footerfix

should fix positioning of footer icons
This commit is contained in:
Carla Schroder
2015-03-24 08:55:03 -07:00
2 changed files with 17 additions and 2 deletions

View File

@@ -169,10 +169,10 @@
{%- block footer %}
<div class="row">
<div class="col-lg-12 footer-social-icons">
<a target="_blank" href="https://plus.google.com/107072838776436530705/about"><img width=50 src="{{ pathto('_static/img/social/googleplus.png', 1) }}"></img></a>
<p class="text-center"><a target="_blank" href="https://plus.google.com/107072838776436530705/about"><img width=50 src="{{ pathto('_static/img/social/googleplus.png', 1) }}"></img></a>
<a target="_blank" style="margin: 0 7px 0 14px;" href="https://www.facebook.com/ownClouders"><img width=50 src="{{ pathto('_static/img/social/facebook.png', 1) }}"></img></a>
<a target="_blank" style="margin: 0 14px 0 7px;" href="https://twitter.com/ownClouders"><img width=50 src="{{ pathto('_static/img/social/twitterround.png', 1) }}"></img></a>
<a target="_blank" href="https://owncloud.org/blogfeed"><img class="img-circle" width=50 src="{{ pathto('_static/img/social/rss.png', 1) }}"></img></a>
<a target="_blank" href="https://owncloud.org/blogfeed"><img class="img-circle" width=50 src="{{ pathto('_static/img/social/rss.png', 1) }}"></img></a></p>
</div>
</div>
<footer class="content-info" role="contentinfo">

View File

@@ -173,6 +173,21 @@ p.socialicons > a > img {
margin: 0 4px;
}
div.footer-social-icons > div {
text-align: center;
margin-bottom: -14px;
margin-top: 7px;
}
div.footer-social-icons> div > a:hover {
opacity: 0.8;
}
div.footer-social-icons img {
margin: 0 1em 1em 0;
}
div.thumbnail > img {
margin-bottom: 0;
}