Skip to content
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

EZP-32253: Wrong links hover on login screen #1684

Merged
merged 2 commits into from
Dec 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/bundle/Resources/public/scss/_links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
color: $ibexa-color-primary;
}

&--no-hover-color {
&:hover {
color: inherit;
text-decoration: none;
}
}

&--light {
color: $ibexa-white;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<div class="ez-login__support-wrapper">
<h2 class="ez-login__support-headline">{{ 'base.need_assistance'|trans|desc('Get to know Ibexa DXP') }}</h2>
<span class="ez-login__support-content">{{ 'base.visit_support'|trans({
'%ez_documentation_link%': '<a class="ez-link ez-link--light" href="https://developers.ibexa.co/documentation-hub">https://developers.ibexa.co/documentation-hub</a>',
'%ez_contact_link%': '<a class="ez-link ez-link--light" href="https://www.ibexa.co/about-ibexa/contact-us">https://www.ibexa.co/about-ibexa/contact-us</a>'
'%ez_documentation_link%': '<a class="ez-link ez-link--light ez-link--no-hover-color" href="https://developers.ibexa.co/documentation-hub">https://developers.ibexa.co/documentation-hub</a>',
'%ez_contact_link%': '<a class="ez-link ez-link--light ez-link--no-hover-color" href="https://www.ibexa.co/about-ibexa/contact-us">https://www.ibexa.co/about-ibexa/contact-us</a>'
})| desc('Visit the official documentation %ez_documentation_link%<br/>or get in touch with us: %ez_contact_link%')|raw }}</span>
</div>
</div>
Expand Down