[IMP] use compass mixin for opacity spec in website_blog.sass

bzr revid: xmo@openerp.com-20131030105019-6f05mbzn118g1w26
This commit is contained in:
Xavier Morel 2013-10-30 11:50:19 +01:00
parent 6914b57b41
commit 2c164e268f
2 changed files with 4 additions and 2 deletions

View File

@ -22,9 +22,11 @@ p.post-meta {
}
.js_website_blog div#right_column section {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
opacity: 0.6;
}
.js_website_blog div#right_column section:hover {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;

View File

@ -23,7 +23,7 @@ p.post-meta
.js_website_blog
div#right_column
section
opacity: 0.6
+opacity(0.6)
section:hover
opacity: 1
+opacity(1)
@include transition(all 0.2s ease-out)