Projet

Général

Profil

0001-wcs-card_ids-field-width-set-to-100-60956.patch

Lauréline Guérin, 28 janvier 2022 16:46

Télécharger (1,18 ko)

Voir les différences:

Subject: [PATCH] wcs: card_ids field width set to 100% (#60956)

 combo/apps/wcs/forms.py                    | 1 +
 combo/manager/static/css/combo.manager.css | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
combo/apps/wcs/forms.py
81 81
            'custom_schema',
82 82
        )
83 83
        widgets = {
84
            'card_ids': forms.TextInput(attrs={'class': 'text-wide'}),
84 85
            'custom_schema': forms.HiddenInput(),
85 86
        }
86 87

  
combo/manager/static/css/combo.manager.css
458 458
	padding-left: 1.5em;
459 459
}
460 460

  
461
form input[type=url] {
461
form input[type=url], form input.text-wide {
462 462
	width: 100%;
463 463
}
464 464

  
465
-