-
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
IBX-4213: Missing hovers on icons #639
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
{% if is_password_input %} | ||
<button | ||
type="button" | ||
class="btn ibexa-input-text-wrapper__action-btn ibexa-input-text-wrapper__action-btn--password-toggler" | ||
class="btn ibexa-btn ibexa-btn--no-text ibexa-input-text-wrapper__action-btn ibexa-input-text-wrapper__action-btn--password-toggler" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Personally, I don't think this should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Discussed in private, Gosia also confirmed, that this button should behave as ghost (and have same changes as ghost, if such occured in future) |
||
tabindex="5" | ||
> | ||
<svg class="ibexa-icon ibexa-icon--small ibexa-input-text-wrapper__password-show"> | ||
|
@@ -41,7 +41,7 @@ | |
</svg> | ||
</button> | ||
{% elseif has_search %} | ||
<button type="{{ search_button_type|default('submit') }}" class="btn ibexa-input-text-wrapper__action-btn ibexa-input-text-wrapper__action-btn--search" tabindex="-1"> | ||
<button type="{{ search_button_type|default('submit') }}" class="btn ibexa-btn ibexa-btn--no-text ibexa-input-text-wrapper__action-btn ibexa-input-text-wrapper__action-btn--search" tabindex="-1"> | ||
<svg class="ibexa-icon ibexa-icon--small"> | ||
<use xlink:href="{{ ibexa_icon_path('search') }}"></use> | ||
</svg> | ||
|
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.
Do we need this to have position absolute?