Leave width for nested inputs
This commit is contained in:
parent
0337293e39
commit
c0f5fbd5fc
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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
Loading…
Reference in New Issue