यदि आप अपने प्रोजेक्ट में SASS का उपयोग कर रहे हैं, तो मैंने इस मिक्सिन को बनाया है ताकि यह काम कर सके जिस तरह से हम यह चाहते हैं:
@mixin not($ignorList...) {
//if only a single value given
@if (length($ignorList) == 1){
//it is probably a list variable so set ignore list to the variable
$ignorList: nth($ignorList,1);
}
//set up an empty $notOutput variable
$notOutput: '';
//for each item in the list
@each $not in $ignorList {
//generate a :not([ignored_item]) segment for each item in the ignore list and put them back to back
$notOutput: $notOutput + ':not(#{$not})';
}
//output the full :not() rule including all ignored items
&#{$notOutput} {
@content;
}
}
इसे 2 तरीकों से इस्तेमाल किया जा सकता है:
विकल्प 1: इनलाइन किए गए आइटम को इनलाइन सूचीबद्ध करें
input {
/*non-ignored styling goes here*/
@include not('[type="radio"]','[type="checkbox"]'){
/*ignored styling goes here*/
}
}
विकल्प 2: पहले किसी आइटम को अनदेखा करें
$ignoredItems:
'[type="radio"]',
'[type="checkbox"]'
;
input {
/*non-ignored styling goes here*/
@include not($ignoredItems){
/*ignored styling goes here*/
}
}
आउटपुट सीएसएस या तो विकल्प के लिए
input {
/*non-ignored styling goes here*/
}
input:not([type="radio"]):not([type="checkbox"]) {
/*ignored styling goes here*/
}