我是新的少用。我從現有的css創建了一個較少的文件。我設法做mixin來管理漸變,但它並沒有被優化。 我認爲有一個問題,因爲我創建了許多漸變功能(我做了很多複製/粘貼...這不是一個好兆頭),也許這不是最好的做法。 我想我可以用更多的參數做得更好。 你能告訴我,如果這是正確的,或者如果我沒有完全地錯了:多個參數或多個功能
/* User UI parameters */
@main-color: #224457; // default blue #324457
@secondary-color: #ececec; // default grey ececec
@gradient-strong: 10%;
@images-rep:'/public/system/assets/img/';
/* Gradient functions */
.gradient (@orientation:to bottom) {
background: linear-gradient(@orientation, @main-color 0%,lighten(@main-color, @gradient-strong) 100%);
}
.gradient-image (@image-url:'') {
background: url("@{images-rep}@{image-url}") no-repeat 20px, linear-gradient(to bottom, @main-color 0%,lighten(@main-color, @gradient-strong) 100%);
}
.gradient-image-right (@image-url:'') {
background: url("@{images-rep}@{image-url}") no-repeat right 20px, linear-gradient(to bottom, @secondary-color 0%,lighten(@secondary-color, @gradient-strong) 100%);
}
.gradient-image-menu (@image-url:'') {
background: url("@{images-rep}@{image-url}") no-repeat 0 -0, linear-gradient(to bottom, @main-color 0%,lighten(@main-color, @gradient-strong) 100%);
}
/* exemple of classes using gradient */
.icon-car {
.gradient-image('caricon.png');
}
.icon-myaccount {
.gradient-image('myaccount-icon.png');
}
.bgdropdown {
.gradient();
border: 0;
padding: 10px;
width: 100%;
text-align: left;
}
.linkmycars {
.gradient-image-right('sub.png');
padding: 12px;
margin-bottom: 10px;
color: #616161;
font-size: 18px;
font-family: tahoma;
display: inline-block;
width: 100%;
border-radius: 3px;
border: 1px solid #d5d5d5;
}
.addcars {
.gradient-image-right('add.png');
padding: 12px;
margin-bottom: 10px;
color: #616161;
font-size: 18px;
font-family: tahoma;
display: inline-block;
width: 100%;
border-radius: 3px;
border: 1px solid #d5d5d5;
}
這似乎很大(我沒有這個可以這樣做),但「背景+:」似乎不是「簡單編譯更少「 – Tyvain
SimpLess已經過時了(它使用了大約2年的舊版本1.3.x)。 ['+:'運營商](http://lesscss.org/features/#merge-feature)需要少於1.5或更高。 –