##// END OF EJS Templates
readme: mention python 3.5+ as a requirement
readme: mention python 3.5+ as a requirement

File last commit:

r0:548a840d
r93:22989869
Show More
opacity.less
8 lines | 148 B | text/x-less | LessCssLexer
// Opacity
.opacity(@opacity) {
opacity: @opacity;
// IE8 filter
@opacity-ie: (@opacity * 100);
filter: ~"alpha(opacity=@{opacity-ie})";
}