Hi there.
Since the latest update something is not working right related to coloring the social media buttons on hover in my footer. It doesn’t display as I would expect according to the following css.
.icon {
border-radius: 0;
cursor: pointer;
display: inline-block;
height: 32px;
margin: 0 -.5em;
-webkit-transition: background-color .5s ease-out, border-radius .5s .25s ease-out, margin .5s .25s ease-out;
-o-transition: background-color .5s ease-out, border-radius .5s .25s ease-out, margin .5s .25s ease-out;
transition: background-color .5s ease-out, border-radius .5s .25s ease-out, margin .5s .25s ease-out;
width: 3px;
color: #ffffff;
}
.icon.first {
border-bottom-left-radius: 1em;
border-top-left-radius: 1em;
margin-left: 0;
}
.icon.last {
border-bottom-right-radius: 1em;
border-top-right-radius: 1em;
margin-right: 0;
}
.icon:hover {
background-color: #ffffff;
color: #000000;
}
Please see attached image and advise. Thanks.