Show Share button on desktop version

Via CSS, I've showed the share button and hide the discuss icon on the post's page. Basically, the share button replaces the real estate of the discuss icon because we are already on the post's page, and we still have the comment link/count in the post's meta.

For those looking for the share button on the posts list (homepage), don't worry because Sacha is going to make the post title redirect to the page of the post. You can see it here: 285aa810d1 . So your users are still going to see the share button. :)
This commit is contained in:
Val Galin 2015-08-01 13:18:54 +08:00
parent a93b10f13a
commit db9d6c5af8

View file

@ -41,6 +41,17 @@
font-size: 22px;
}
.single-post {
@include medium-large {
.post-discuss {
display: none;
}
.post-share {
display: block;
}
}
}
// ------------------------------------ posts views nav ------------------------------------ //
.posts-views-nav{
background: white(0.6);