From 8ca49779721185f28cf4a1303657f5d690afc12e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 28 Feb 2020 08:33:34 +0100 Subject: [PATCH] style: consider inputs with a name ending with -url as URL fields (#40253) --- gadjo/static/css/_forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gadjo/static/css/_forms.scss b/gadjo/static/css/_forms.scss index 6f6331d..737c09b 100644 --- a/gadjo/static/css/_forms.scss +++ b/gadjo/static/css/_forms.scss @@ -175,7 +175,7 @@ input, input[type="text"], input[type="url"], input[type="email"], input[type="p } } -input[type="text"][name$="_url"], input[type="url"] { +input[type="text"][name$="_url"], input[type="text"][name$="-url"], input[type="url"] { width: 100%; }