Starting with v40 Firefox switched to using text-decoration to provide the underline and chromium will be doing it that way too. So you should update your code to include that if you need to support those browsers:
abbrRemove underlining caused by abbr tag {
border-bottom: none !important;
cursor: inherit !important;
text-decoration: none !important;
}