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,
form p select, div.widget {
form p textarea { input,
width: 100%; select,
} textarea {
width: 100%;
form p input[type=radio], form p input[type=checkbox] { }
width: auto; input[type=radio], form p input[type=checkbox] {
width: auto;
}
} }
} }