misc: add class to bold cell's title (#70283)

This commit is contained in:
Serghei Mihai 2022-10-19 11:53:10 +02:00
parent 438073f7ea
commit 1bef45bfb5
2 changed files with 10 additions and 0 deletions

View File

@ -81,6 +81,10 @@ de classes CSS réutilisables.
<td><p><code>pk-success</code></p></td>
<td><p>Donne à la cellule le style de bloc de réussite.</p></td>
</tr>
<tr>
<td><p><code>pk-cell-bold-title</code></p></td>
<td><p>Met en gras le titre dune celulle.</p></td>
</tr>
</table>
</section>

View File

@ -48,6 +48,12 @@ div.link-cell.pk-big-button {
}
}
.pk-cell-bold-title {
&.cell > div h2:first-child {
font-weight: bold;
}
}
.pk-important {
// on form fields, turn the label bold.
&.widget .title label {