diff --git a/src/components/emby-button/emby-button.css b/src/components/emby-button/emby-button.css index 148d1ebadb..a37a28ebe4 100644 --- a/src/components/emby-button/emby-button.css +++ b/src/components/emby-button/emby-button.css @@ -50,10 +50,6 @@ vertical-align: initial; } -.button-link-inline { - display: inline; -} - .button-link:hover { text-decoration: underline; } diff --git a/src/components/emby-button/emby-button.js b/src/components/emby-button/emby-button.js index d80b224d03..6df7aebb5c 100644 --- a/src/components/emby-button/emby-button.js +++ b/src/components/emby-button/emby-button.js @@ -28,11 +28,6 @@ define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css this.classList.add('emby-button'); - if (browser.firefox) { - // a ff hack is needed for vertical alignment - this.classList.add('button-link-inline'); - } - if (layoutManager.tv) { if (this.getAttribute('data-focusscale') !== 'false') { this.classList.add('emby-button-focusscale'); @@ -82,4 +77,4 @@ define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css // For extension purposes return EmbyButtonPrototype; -}); \ No newline at end of file +});