Projet

Général

Profil

0001-misc-add-class-to-bold-cell-s-title-70283.patch

Serghei Mihai, 19 octobre 2022 12:07

Télécharger (1,23 ko)

Voir les différences:

Subject: [PATCH] misc: add class to bold cell's title (#70283)

 help/fr/misc-css-classes.page | 4 ++++
 static/includes/_library.scss | 6 ++++++
 2 files changed, 10 insertions(+)
help/fr/misc-css-classes.page
81 81
  <td><p><code>pk-success</code></p></td>
82 82
  <td><p>Donne à la cellule le style de bloc de réussite.</p></td>
83 83
 </tr>
84
 <tr>
85
  <td><p><code>pk-cell-bold-title</code></p></td>
86
  <td><p>Met en gras le titre d’une celulle.</p></td>
87
 </tr>
84 88
</table>
85 89

  
86 90
</section>
static/includes/_library.scss
48 48
	}
49 49
}
50 50

  
51
.pk-cell-bold-title {
52
	&.cell > div h2:first-child {
53
		font-weight: bold;
54
	}
55
}
56

  
51 57
.pk-important {
52 58
	// on form fields, turn the label bold.
53 59
	&.widget .title label {
54
-