From 0487f381fd4f3f53a784a10944d722d326bdcad8 Mon Sep 17 00:00:00 2001 From: myleneb Date: Fri, 21 Aug 2015 04:49:11 +0200 Subject: [PATCH] fixing .post-info-sent position --- css/style.css | 23 ++++++++--------------- sass/layout/_postboard.sass | 21 ++++++--------------- 2 files changed, 14 insertions(+), 30 deletions(-) diff --git a/css/style.css b/css/style.css index 945c6ca..1f48666 100644 --- a/css/style.css +++ b/css/style.css @@ -1401,7 +1401,7 @@ button.light:hover, .light.show-more-followers:hover, a.button.light:hover { text-decoration: none; top: 12px; right: 0; - padding-right: 15px; + padding-right: 11px; text-align: right; color: #8a8691; } @@ -1574,39 +1574,32 @@ button.light:hover, .light.show-more-followers:hover, a.button.light:hover { } .post-rt-reference { - padding: 5px; + padding: 10px; margin-top: 10px; position: relative; border: 1px solid #eee; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; } .post-rt-reference:hover { background-color: #FFF; cursor: pointer; } .post-rt-reference .post-photo { - width: 16px; - height: 16px; - margin-right: 4px; - margin-bottom: 4px; -} -.post-rt-reference .post-photo img { - width: 16px; - height: auto; + display: none; } .post-rt-reference .post-info-name { font-size: 12px; } .post-rt-reference .post-text { - margin: 0; + margin: 5px 0 0 0; clear: both; font-size: 12px; line-height: 130%; } .post-rt-reference .post-info-time { - color: #B3B5B7; - top: 5px; - right: 5px; - font-size: 12px; + display: none; } .forEdition.profile-card { diff --git a/sass/layout/_postboard.sass b/sass/layout/_postboard.sass index 035c7e2..6a4baa6 100755 --- a/sass/layout/_postboard.sass +++ b/sass/layout/_postboard.sass @@ -157,7 +157,7 @@ text-decoration: none top: 12px right: 0 - padding-right: 15px + padding-right: 11px text-align: right color: lighten($dark-grey,30%) &:hover @@ -330,31 +330,22 @@ .post-rt-reference - padding: 5px + padding: 10px margin-top: 10px position: relative border: 1px solid #eee - + +border-radius(3px) &:hover background-color: #FFF cursor: pointer .post-photo - width: 16px - height: 16px - margin-right: 4px - margin-bottom: 4px - img - width: 16px - height: auto + display: none .post-info-name font-size: 12px .post-text - margin: 0 + margin: 5px 0 0 0 clear: both font-size: 12px line-height: 130% .post-info-time - color: #B3B5B7 - top: 5px - right: 5px - font-size: 12px + display: none