我希望能够使用极少数选择compass
mixin,但不想像这样使用compass
,即根本使用指南针:
@import "compass";
@import "compass/reset";
@import "compass/css3";
那么,mixin是否安装在我的电脑上?我看过类似于这条路径的地方:
C:\Ruby200-x64\lib\ruby\gems\2.0.0\gems\compass-0.12.2\examples\css3\src
也许我以不正确的方式思考这个问题?
答案 0 :(得分:1)
我不确定您是否可以在安装后实际查看源文件。由于Compass是开源的,因此您可以在Github上查看所有内容:https://github.com/Compass/compass/tree/stable/core/stylesheets/compass
例如,这是来自css3/border-radius
的混音:
@mixin border-corner-radius($vert, $horz, $radius: $default-border-radius) {
@include with-each-prefix(border-radius, $border-radius-threshold) {
@if $current-prefix == -moz {
// Support for mozilla's syntax for specifying a corner
@include prefix-prop("border-radius-#{$vert}#{$horz}", $radius);
} @else {
// Official syntax for everyone else
@include prefix-prop("border-#{$vert}-#{$horz}-radius", $radius);
}
}
}