Projet

Général

Profil

0001-scss-introduce-footer-link-color-53479.patch

Thomas Jund, 27 avril 2021 17:59

Télécharger (1,63 ko)

Voir les différences:

Subject: [PATCH] scss: introduce $footer-link-color (#53479)

 help/fr/misc-scss.page       | 6 ++++++
 static/includes/_layout.scss | 4 ++++
 2 files changed, 10 insertions(+)
help/fr/misc-scss.page
68 68
  <td><p>Couleur du texte du pied de page</p></td>
69 69
  <td><p><var>white</var></p></td>
70 70
 </tr>
71
 <tr>
72
 <tr>
73
  <td><p><code>$footer-link-color</code></p></td>
74
  <td><p>Couleur des liens du pied de page</p></td>
75
  <td><p><var>$link-color</var></p></td>
76
 </tr>
71 77
 <tr>
72 78
  <td><p><code>$border-radius</code></p></td>
73 79
  <td><p>Taille de l'arrondi à appliquer à différents éléments</p></td>
static/includes/_layout.scss
5 5
$footer-background: #666666 !default;
6 6
$footer-full-width-background: true !default;
7 7
$footer-color: white !default;
8
$footer-link-color: $link-color !default;
8 9
$sidebar-width: 300px !default;
9 10
$sidebar-max-width: $sidebar-width !default;
10 11
$sidebar-min-width: 0 !default;
......
142 143
	clear: both;
143 144
	margin-top: 1.5em;
144 145
	color: $footer-color;
146
	a {
147
		color: $footer-link-color;
148
	}
145 149
}
146 150

  
147 151
@if $footer-full-width-background {
148
-