0
我有這樣的SCSS代碼:SASS/SCSS內容功能
@include m(messages){
@include e(btn){
&:not([aria-expanded="true"]):hover{
background-color: rgba(66, 143, 222, 0.11);
}
&[aria-expanded="true"],
span{
background-color: $color_dark_blue;
box-shadow:0 2px 5px rgba(66, 143, 222, 0.2);
}
&[aria-expanded="true"]{
span{
color:$color_dark_blue;
}
}
}
@include e(header){
background-color:$color_dark_blue;
}
}
@include m(reminders){
@include e(btn){
&:not([aria-expanded="true"]):hover{
background-color: rgba(255, 208, 23, 0.11);
}
&[aria-expanded="true"],
span {
background-color: $color_yellow;
box-shadow:0 2px 5px rgba(255, 208, 23, 0.2);
}
&[aria-expanded="true"]{
span{
color:$color_yellow;
}
}
}
@include e(header){
background-color:$color_yellow;
}
}
我有很多的相似@include
,只是不同的是顏色和修改名稱。 我想寫功能類似
notificator('messages', $color_dark_blue);
notificator('reminders', $color_yellow);
如何實現SASS/SCSS這個功能?
工程,完美,感謝的人! :) – Sko
很高興我能幫忙(: –