scss: introduce $footer-link-color (#53479)

This commit is contained in:
Thomas Jund 2021-04-27 17:49:43 +02:00
parent ff90c433e9
commit 14a10561d7
2 changed files with 9 additions and 0 deletions

View File

@ -68,6 +68,11 @@ paramètre, la deuxième sa description et la troisième la valeur par défaut.
<td><p>Couleur du texte du pied de page</p></td>
<td><p><var>white</var></p></td>
</tr>
<tr>
<td><p><code>$footer-link-color</code></p></td>
<td><p>Couleur des liens du pied de page</p></td>
<td><p><var>$link-color</var></p></td>
</tr>
<tr>
<td><p><code>$border-radius</code></p></td>
<td><p>Taille de l'arrondi à appliquer à différents éléments</p></td>

View File

@ -5,6 +5,7 @@ $columns-gutter: 20px !default;
$footer-background: #666666 !default;
$footer-full-width-background: true !default;
$footer-color: white !default;
$footer-link-color: $link-color !default;
$sidebar-width: 300px !default;
$sidebar-max-width: $sidebar-width !default;
$sidebar-min-width: 0 !default;
@ -142,6 +143,9 @@ div#main-content {
clear: both;
margin-top: 1.5em;
color: $footer-color;
a {
color: $footer-link-color;
}
}
@if $footer-full-width-background {