Remove share icons

This commit is contained in:
Yorick Barbanneau 2019-02-01 11:39:35 +01:00
parent 6fce82882e
commit 6d6fddd901
2 changed files with 1 additions and 60 deletions

View file

@ -1456,53 +1456,6 @@ img {
overflow: hidden
}
.post-share {
max-width: 25%;
float: right
}
.post-share a {
display: block;
width: 2em;
height: 2em;
margin: 0.333em 0 0.333em 0.666em;
padding: 0;
float: left;
font-size: 0.75em;
line-height: 2em;
text-align: center;
text-decoration: none;
color: #fff;
border-radius: 2px;
transition: all ease 0.3s
}
.post-share a:hover,
.post-share a:focus {
background-color: #212226
}
.post-share a i {
color: inherit
}
.post-share a i:before {
width: auto;
height: auto
}
.post-share .twitter {
background-color: #3ea9dd
}
.post-share .facebook {
background-color: #3c5a98
}
.post-share .googleplus {
background-color: #d14836
}
.post-tags {
max-width: 75%;
float: left;

View file

@ -120,19 +120,7 @@
</section>
<section class="post-info">
<div class="post-share">
<a class="twitter" href="https://twitter.com/share?text={{ article.title }}&amp;url={{ SITEURL }}/{{ article.url }}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="ic ic-twitter"></i><span class="hidden">Twitter</span>
</a>
<a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u={{ SITEURL }}/{{ article.url }}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="ic ic-facebook"></i><span class="hidden">Facebook</span>
</a>
<a class="googleplus" href="https://plus.google.com/share?url={{ SITEURL }}/{{ article.url }}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="ic ic-googleplus"></i><span class="hidden">Google+</span>
</a>
<div class="clear"></div>
</div>
{% if article.tags %}
<aside class="post-tags">
{% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag | escape }}</a>{% if not loop.last %}{% endif %}{% endfor %}