Projet

Général

Profil

0001-scss-introduce-a-public-pk-important-class-for-field.patch

Frédéric Péters, 19 juin 2020 11:57

Télécharger (1,34 ko)

Voir les différences:

Subject: [PATCH] scss: introduce a public pk-important class for fields
 (#44251)

 help/fr/misc-css-classes.page | 5 +++++
 static/includes/_forms.scss   | 6 ++++++
 2 files changed, 11 insertions(+)
help/fr/misc-css-classes.page
78 78
  <td><p><code>pk-hidden</code></p></td>
79 79
  <td><p>Cache le champ (applicable uniquement aux champs de type « Liste »).</p></td>
80 80
 </tr>
81
 <tr>
82
  <td><p><code>pk-important</code></p></td>
83
  <td><p>Marque le champ comme étant particulièrement important, le rendu sera
84
  généralement un libellé mis en gras.</p></td>
85
 </tr>
81 86
</table>
82 87
</section>
83 88

  
static/includes/_forms.scss
613 613
		}
614 614
	}
615 615
}
616

  
617
// pk-important as a class so users can mark fields as important, this turns
618
// the label bold.
619
.pk-important .title label {
620
	font-weight: bold;
621
}
616
-