mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 02:13:38 +08:00
UX: Make bulk select checkbox easier to target (#13517)
Adds a label element around the checkbox, so that user can more easily hit the element. Quite useful when checking many items in topic list.
This commit is contained in:
parent
180c0c4dc3
commit
cb9e004121
|
@ -2,7 +2,9 @@
|
||||||
|
|
||||||
{{#if bulkSelectEnabled}}
|
{{#if bulkSelectEnabled}}
|
||||||
<td class="bulk-select">
|
<td class="bulk-select">
|
||||||
<input type="checkbox" class="bulk-select">
|
<label for="bulk-select-{{topic.id}}">
|
||||||
|
<input type="checkbox" class="bulk-select" id="bulk-select-{{topic.id}}">
|
||||||
|
</label>
|
||||||
</td>
|
</td>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -46,8 +46,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
td.bulk-select {
|
td.bulk-select {
|
||||||
padding: 10px;
|
padding: 0;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
|
label {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 12px 10px 16px 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
+ .main-link {
|
+ .main-link {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user