Leave width for nested inputs

This commit is contained in:
Mike Jolley 2017-09-08 12:27:16 +01:00
parent 0337293e39
commit c0f5fbd5fc
5 changed files with 16 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3117,7 +3117,6 @@ img.help_tip {
input[type="text"],
input[type="number"],
input[type="email"] {
padding: 6px;
height: auto;
}
@ -3140,6 +3139,18 @@ img.help_tip {
box-sizing: border-box;
}
// Ignore nested inputs.
table {
select,
textarea,
input[type="text"],
input[type="email"],
input[type="number"],
input.regular-input {
width: auto;
}
}
textarea.wide-input {
width: 100%;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long