Hey guys,
This is related to the following thread:
There’s a bit of generated CSS that always conflict with other buttons and links on posts for the Icon stack. This bit can be found in this file:
/x/framework/functions/frontend/generated-css/icon.php
On line 183 and 187:
.format-standard .entry-content a:not(.x-btn):not(.x-img-thumbnail) {
border-bottom: 1px dotted;}
This affects floating social links. The only way to properly do this kind of styling would be to use the following code:
.format-standard .entry-content a:not([class]) { border-bottom: 1px dotted; }
.format-standard .entry-content a:hover:not([class]) { opacity: 0.65;filter: alpha(opacity=65); }
This will ensure only naked links are styled. Currently, only two classes are excluded but this does not cover the entirety of scenarios where a link would have a different class and still would need to be ignored.
I’d appreciate if you can consider to do this small change on future releases for the Icon stack so that it doesn’t get overwritten everytime I go back into the Theme Options CSS.
Thank you!
