Projet

Général

Profil

0001-scss-fix-grid-display-in-form-status-page-27063.patch

Frédéric Péters, 07 octobre 2018 17:25

Télécharger (1,12 ko)

Voir les différences:

Subject: [PATCH] scss: fix grid display in form status page (#27063)

 static/includes/_grid.scss | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)
static/includes/_grid.scss
30 30

  
31 31
div.dataview div[class*=grid-],
32 32
form div[class*=grid-] {
33
	+ h3, +h4, +p, +div {
34
		clear: both;
35
	}
36 33
	+ h3, + h4 {
37 34
		// give additional padding to compensate the margin being
38 35
		// "absorbed" by the floating element.
......
40 37
	}
41 38
}
42 39

  
40
form div[class*=grid-] {
41
	+ h3, + h4, + p, + div {
42
		clear: both;
43
	}
44
}
45

  
46
div.dataview div[class*=grid-] {
47
	+ div.title, + div.subtitle {
48
		clear: both;
49
	}
50
}
51

  
43 52
form div[class*=grid-] span.select2-selection,
44 53
form div[class*=grid-] div.select2-container {
45 54
	width: 100% !important;
46
-