diff --git a/devtools/client/jsonview/converter-child.js b/devtools/client/jsonview/converter-child.js index 91cfb533cf17..7f22c4bcc8bd 100644 --- a/devtools/client/jsonview/converter-child.js +++ b/devtools/client/jsonview/converter-child.js @@ -214,7 +214,6 @@ Converter.prototype = { let baseUrl = clientBaseUrl + "jsonview/"; let themeVarsUrl = clientBaseUrl + "themes/variables.css"; let commonUrl = clientBaseUrl + "themes/common.css"; - let toolbarsUrl = clientBaseUrl + "themes/toolbars.css"; let os; let platform = Services.appinfo.OS; @@ -239,8 +238,6 @@ Converter.prototype = { themeVarsUrl + "\">" + "" + - "" + "" + "" + "" + diff --git a/devtools/client/shared/components/tabs/tabbar.css b/devtools/client/shared/components/tabs/tabbar.css index df14fac64c38..39ef7f98af0b 100644 --- a/devtools/client/shared/components/tabs/tabbar.css +++ b/devtools/client/shared/components/tabs/tabbar.css @@ -29,6 +29,10 @@ height: 28px; } +.tabs .tabs-menu-item a { + cursor: default; +} + /* The tab takes entire horizontal space and individual tabs should stretch accordingly. Use flexbox for the behavior. Use also `overflow: hidden` so, 'overflow' and 'underflow' diff --git a/devtools/client/shared/components/tabs/tabs.css b/devtools/client/shared/components/tabs/tabs.css index d203a42c6463..b0693218f6d1 100644 --- a/devtools/client/shared/components/tabs/tabs.css +++ b/devtools/client/shared/components/tabs/tabs.css @@ -30,10 +30,6 @@ white-space: nowrap; } -.tabs .tabs-menu-item a { - cursor: default; -} - /* Make sure panel content takes entire vertical space. (minus the height of the tab bar) */ .tabs .panels { diff --git a/devtools/client/themes/moz.build b/devtools/client/themes/moz.build index 543f4eff0411..4b349dbacc74 100644 --- a/devtools/client/themes/moz.build +++ b/devtools/client/themes/moz.build @@ -11,6 +11,5 @@ DIRS += [ DevToolsModules( 'common.css', 'splitters.css', - 'toolbars.css', 'variables.css', )