Custom Query (1173 matches)
Results (187 - 189 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#422 | invalid | Header drop-down disappears when clicked | ||
Description |
If you click on the expanded drop-down list, it will disappear. If you click on the original button, it doesn't disappear. Both of these behaviors are wrong. The expanded drop-down list should disappear when the user clicks anywhere but on the list itself. (Also, it needs some small styling changes to make it look like the button and the list are visually connected.) |
|||
#474 | fixed | Change password is on the same page as the rest of the account settings | ||
Description |
On the "Changing account settings" page, there is a form to change your password. This is mixed in with other, less invasive, account options such as comment notifications. I think they should be separated and the page should have a link saying "Change account password", which links to a new page containing the form to change your password. |
|||
#475 | fixed | Checkbox for email notifications sits above its label | ||
Description |
On the "Changing account settings" page, the checkbox for email comment notifications looks like this: [✓] Email me when others comment on my media It should look like this: [✓] Email me when others comment on my media And clicking the label should check or uncheck the checkbox. To do this, the HTML should be changed from the current: <input type="checkbox"> <p>Email me when others comment on my media</p> To this: <label><input type="checkbox">Email me when others comment on my media</label> But I have no idea how to do this, because it's generated by WTForms. |