Projet

Général

Profil

0001-scss-add-variable-to-control-title-top-border-24204.patch

Anonyme, 31 mai 2018 14:40

Télécharger (1,5 ko)

Voir les différences:

Subject: [PATCH] scss: add variable to control title top border (#24204)

 help/fr/misc-scss.page      | 5 +++++
 static/includes/_title.scss | 2 ++
 2 files changed, 7 insertions(+)
help/fr/misc-scss.page
136 136
  <td><p>Taille de l'arrondi à appliquer aux titres</p></td>
137 137
  <td><p><var>$border-radius</var></p></td>
138 138
 </tr>
139
 <tr>
140
  <td><p><code>$title-border-top</code></p></td>
141
  <td><p>Bordure pour le haut des titres</p></td>
142
  <td><p><var>0</var></p></td>
143
 </tr>
139 144
</table>
140 145
</section>
141 146

  
static/includes/_title.scss
7 7
$title-border-radius: $border-radius !default;
8 8
$title-font-family: $font-family !default;
9 9
$title-border-bottom: 0 !default;
10
$title-border-top: 0 !default;
10 11
$title-padding: 1ex !default;
11 12

  
12 13
%title {
......
25 26
	font-family: $title-font-family;
26 27
	font-style: $title-font-style;
27 28
	border-bottom: $title-border-bottom;
29
	border-top: $title-border-top;
28 30
}
29
-