Skip to content
Snippets Groups Projects
Commit f6bf963c authored by Jean-Baptiste Pasquier's avatar Jean-Baptiste Pasquier
Browse files

fix: community profile link

parent d9e52e99
No related branches found
No related tags found
No related merge requests found
...@@ -92,3 +92,14 @@ hubl-menu-empty+hubl-menu-empty { ...@@ -92,3 +92,14 @@ hubl-menu-empty+hubl-menu-empty {
.two-lines-ellipsis { .two-lines-ellipsis {
display: -webkit-box !important; display: -webkit-box !important;
} }
.link-hover {
text-decoration: underline;
&:before {
text-decoration: none;
}
&:hover {
text-decoration: none;
}
}
\ No newline at end of file
if componentSet.has('communities') && getRoute('communities') if componentSet.has('communities') && getRoute('communities')
solid-widget(name='hubl-communities-profile-email') solid-widget(name='hubl-communities-profile-email')
template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-email-outline icon-third icon-large icon-margin-right-xsmall" href="mailto:\${value}">${value}</a>` : ""} template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-email-outline icon-third icon-large icon-margin-right-xsmall link-hover" href="mailto:\${value}">${value}</a>` : ""}
if componentSet.has('communities') && getRoute('communities') if componentSet.has('communities') && getRoute('communities')
solid-widget(name='hubl-communities-profile-phone') solid-widget(name='hubl-communities-profile-phone')
template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-cellphone-iphone icon-third icon-large icon-margin-right-xsmall" href="tel:\${value}">${value}</a>` : ""} template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-cellphone-iphone icon-third icon-large icon-margin-right-xsmall link-hover" href="tel:\${value}">${value}</a>` : ""}
if componentSet.has('communities') && getRoute('communities') if componentSet.has('communities') && getRoute('communities')
solid-widget(name='hubl-communities-profile-website') solid-widget(name='hubl-communities-profile-website')
template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-link-variant icon-third icon-large icon-margin-right-xsmall" href="tel:\${value}" target="_blank">${value}</a>` : ""} template ${value != "" ? `<a class="link margin-bottom-xsmall icon mdi-link-variant icon-third icon-large icon-margin-right-xsmall link-hover" href="tel:\${value}" target="_blank">${value}</a>` : ""}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment