Projet

Général

Profil

0001-css-use-full-width-for-form.as_template-widgets-in-d.patch

Frédéric Péters, 07 mai 2019 11:40

Télécharger (944 octets)

Voir les différences:

Subject: [PATCH] css: use full width for form.as_template widgets in dialogs
 (#32850)

 gadjo/static/css/_jqueryui.scss | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)
gadjo/static/css/_jqueryui.scss
196 196
		}
197 197
	}
198 198

  
199
	form p input,
200
	form p select,
201
	form p textarea {
202
		width: 100%;
203
	}
204

  
205
	form p input[type=radio], form p input[type=checkbox] {
206
		width: auto;
199
	form p,
200
	div.widget {
201
		input,
202
		select,
203
		textarea {
204
			width: 100%;
205
		}
206
		input[type=radio], form p input[type=checkbox] {
207
			width: auto;
208
		}
207 209
	}
208 210
}
209 211

  
210
-