OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/assets/stylesheets/content/_choice.md

21 lines
493 B

# Choice
For selection from a list without having to use a form. This can be reused for selects which have no association to any type of form.
```
<div class="choice">
<div class="choice--select">
<select class="select2">
<option value="">one</option>
<option value="">two</option>
<option value="">three</option>
</select>
</div>
<div class="choice--button">
<button class="button">
<i class="icon-edit"></i> Edit
</button>
</div>
</div>
```