SCSS: Add 2 helpers classes to make elements transparent or opaque

This commit is contained in:
Molkobain
2021-05-28 22:21:16 +02:00
committed by Eric
parent bf37bfbd2d
commit c00987d1e9

View File

@@ -40,6 +40,14 @@ $ibo-sticky-sentinel-bottom--height: $ibo-sticky-sentinel--height !default;
display: none !important; /* Note: !important is necessary as it needs to overload any standard rules */
}
.ibo-is-transparent {
opacity: 0 !important; /* Note: !important is necessary as it needs to overload any standard rules */
}
.ibo-is-opaque {
opacity: 1 !important; /* Note: !important is necessary as it needs to overload any standard rules */
}
/****************************/
/* Disposition / alignement */
/****************************/