Feature #1609
test_create: some <input> tags have no html attributes
Status: | New | Start date: | 2016-02-21 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | - | |||
Target version: | - |
Description
for instance
<div class="attribute" name="id"><span>ID: </span><input></div>
Among the consequences, this makes it difficult to select them properly with css.
Ideally, I would want to be able to do
div.attribute input[type=text]{ width: 400px; }
instead I have to do something like:
div.attribute input[type=radio], div.attribute input[type=checkbox]{ width: 10px; } div.attribute input{ max-width: 100%; width: 300px; }