Skip to content
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
10 changes: 10 additions & 0 deletions Resources/Public/less/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -7158,6 +7158,16 @@ div.awesomplete li[aria-selected="true"] mark {
& > .icons:after {
border-color: fade(@social-icons-hover-color, 50%);
}

// ie11 and edge fix for underline on icon - text-decoration has to be styled before it can be unstyled
& > .icons:before when not (@link-hover-decoration = none) {
text-decoration: @link-hover-decoration;
}

& > .icons:before when not (@link-hover-decoration = none) {
text-decoration: none;
}
// end fix
}
}

Expand Down
10 changes: 10 additions & 0 deletions felayout_t3kit/dev/styles/main/contentElements/socialIcons.less
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@
& > .icons:after {
border-color: fade(@social-icons-hover-color, 50%);
}

// ie11 and edge fix for underline on icon - text-decoration has to be styled before it can be unstyled
& > .icons:before when not (@link-hover-decoration = none) {
text-decoration: @link-hover-decoration;
}

& > .icons:before when not (@link-hover-decoration = none) {
text-decoration: none;
}
// end fix
}
}

Expand Down