-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve inline filter field #1128
Conversation
caseyhans
commented
Oct 30, 2024
- Add animation to caret dropdown button
- Add screen-reader friendly labels/help text to fields
- Replace help text in 'title' with error message for appended fields
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - I moved the sr information inside the appended fields main loop instead of a second pass - was that an ok change?
@@ -161,6 +161,13 @@ tfoot > tr > td { | |||
.bg-light.clickable:active, .clickable:active .bg-light { | |||
background-color: #d4d5d6 !important; | |||
} | |||
.collapsed .collapsible-icon { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i love it
@@ -40,6 +41,12 @@ | |||
<button type="submit" name="save" class="btn btn-primary px-5" title="Apply filters"><i class="fa fa-search" aria-hidden="true"></i></button> | |||
</div> | |||
</div> | |||
{% for field in appended_fields %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved this inside the standard field div instead of adding another loop, is that ok? 3472335
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.