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

This commit is contained in:
Frédéric Péters 2019-05-07 11:39:18 +02:00
parent c57372565b
commit 86a467b84c
1 changed files with 10 additions and 8 deletions

View File

@ -196,14 +196,16 @@ div.ui-dialog {
}
}
form p input,
form p select,
form p textarea {
width: 100%;
}
form p input[type=radio], form p input[type=checkbox] {
width: auto;
form p,
div.widget {
input,
select,
textarea {
width: 100%;
}
input[type=radio], form p input[type=checkbox] {
width: auto;
}
}
}