2016-06-11 33 views
0

我使用了很多插件的Socialengine(Zend Framework),但其中一个插件有不同的CSS。我如何编译这个CSS

事实上,有很多CSS级联,但不是更少或sass文件。

我的文件style.css看起来是这样的:

/*Mixins*/ 
=font-size($px){ 
    font-size: calc($px/13)em; 
} 

=transition{ 
    -webkit-transition: all 300ms ease-in-out; 
    -o-transition: all 300ms ease-in-out; 
    transition: all 300ms ease-in-out; 
} 

=border-radius($radius) { 
    -webkit-border-radius: $radius; 
    -moz-border-radius: $radius; 
    border-radius: $radius; 
} 

=text-clamp($line) { 
    word-break: break-word; 
    word-wrap: break-word; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    line-height: normal;   
    -webkit-line-clamp: $line; 
    line-height: 18px; 
    height: calc(18*$line)px; 
} 

/* CSS */ 
.blog_options{ 
    display: block; 
    position: absolute; 
    width: 170px; 
    right: 0; 
    border: 1px solid $theme_border_color; 
    background: #FFF; 
    display: none; 
    box-shadow: 0px 0px 21px -5px #ccc; 


    &.blog_options_show{ 
     display: block; 
    } 

    & > a{ 
     padding: 10px 15px; 
     display: block; 
     +font-size(13); 
     border-bottom: 1px solid $theme_border_color; 
     color: $theme_font_color !important; 

     &:hover{ 
      background: $theme_link_color_hover; 
      color: #FFF !important; 
     } 

     i.fa{ 
      +font-size(14); 
      margin-right: 5px; 
     } 

     &:last-of-type{ 
      border-bottom: 0; 
     } 

     &.icon_blog_delete{ 
      color: #c31919 !important; 
      background: #f6f6f6 !important; 
      i.fa{ 
       color: #c31919; 
      } 
     } 
    } 
} 

因此,如何我可以手动编译此为有一个干净的CSS文件? 这种类型的CSS有一个名字?

谢谢

回答

1

,因为我没有更多的知识约socialengine脚本,但它使用CSScaffold在CSS编写。 查看repository了解更多信息。