我需要覆盖mixin中使用的一些全局变量。但是我不愿意只改变全局空间中的变量(当时不会覆盖)
考虑这个给定的mixin,并定义了所需的变量。
// Mixin and adjust the regular image class
.thumbnail {
display: block;
padding: @thumbnail-padding;
margin-bottom: @line-height-computed;
line-height: @line-height-base;
background-color: @thumbnail-bg;
border: 1px solid @thumbnail-border;
border-radius: @thumbnail-border-radius;
.transition(all .2s ease-in-out);
> img,
a > img {
.img-responsive();
margin-left: auto;
margin-right: auto;
}
// Add a hover state for linked versions only
a&:hover,
a&:focus,
a&.active {
border-color: @link-color;
}
// Image captions
.caption {
padding: @thumbnail-caption-padding;
color: @thumbnail-caption-color;
}
}
是的,来自Bootstrap ......现在我希望mixin能够处理不同的变量,而不需要改变全局范围的变量。可以这样做吗?
article.publications {
.news-thumb {
@thumbnail-padding: 10px;
@line-height-computed: 20px;
@line-height-base: 30px;
@thumbnail-bg : black;
.thumbnail();
}
}