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
parent 82f0cd5f3d
commit e669cfcea1

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 */
/****************************/