Projet

Général

Profil

0001-scss-style-table-caption-30465.patch

Emmanuel Cazenave, 13 février 2019 17:40

Télécharger (1,09 ko)

Voir les différences:

Subject: [PATCH 1/2] scss: style table caption (#30465)

 static/includes/_library.scss | 9 +++++++++
 1 file changed, 9 insertions(+)
static/includes/_library.scss
4 4
//
5 5
// The classes are prefixed by pk-.
6 6

  
7
$table-caption-color: $title-color !default;
8
$table-caption-side: top !default;
9

  
7 10
$table-headers-background: $title-background !default;
8 11
$table-headers-color: $title-color !default;
9 12
$table-headers-font-style: $title-font-style !default;
......
34 37

  
35 38
table.pk-data-table {
36 39
	border-collapse: collapse;
40
	caption {
41
		caption-side: $table-caption-side;
42
		color: $table-caption-color;
43
		font-size: 120%;
44
		padding: 1rem;
45
	}
37 46
	&.pk-table-headers thead th {
38 47
		background: $table-headers-background;
39 48
		color: $table-headers-color;
40
-