style: consider inputs with a name ending with -url as URL fields (#40253)

This commit is contained in:
Frédéric Péters 2020-02-28 08:33:34 +01:00
parent ff82184678
commit 8ca4977972
1 changed files with 1 additions and 1 deletions

View File

@ -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%;
}