scss: introduce $carrousel-item-mask-color (#51440)

This commit is contained in:
Thomas Jund 2021-02-25 12:49:51 +01:00
parent c68ab04941
commit 4c19d6c901
2 changed files with 9 additions and 2 deletions

View File

@ -850,6 +850,11 @@ paramètre, la deuxième sa description et la troisième la valeur par défaut.
élément à l'autre sont affichées. (visible ou none)</p></td>
<td><p><var>visible</var></p></td>
</tr>
<tr>
<td><p><code>$carrousel-item-mask-color</code></p></td>
<td><p>Couleur du masque qui se superpose à l'image de la diapositive</p></td>
<td><p><var>rgba(0, 0, 0, 0.3)</var></p></td>
</tr>
</table>
</section>

View File

@ -1,5 +1,6 @@
/* $carrousel-height: height of carrousel image */
$carrousel-height: 20rem !default;
$carrousel-item-mask-color: rgba(0, 0, 0, 0.3) !default;
/* $carrousel-text-position: [vertical option] [horizontal option] */
/* vertical options: top | middle | bottom */
@ -47,6 +48,7 @@ div.carrousel-content {
height: 100%;
background-size: cover;
padding: 10px;
@if ($carrousel-item-mask-color and $carrousel-item-mask-color != transparent) {
&::after {
content: "";
display: block;
@ -55,8 +57,8 @@ div.carrousel-content {
width: 100%;
height: 100%;
position: absolute;
background: black;
opacity: 0.3;
background: $carrousel-item-mask-color;
}
}
div.carrousel-item-content {
@if $carrousel-navigation == "visible" {