diff --git a/ui/css/treeherder-navbar-panels.css b/ui/css/treeherder-navbar-panels.css
index 5aef919b0..d3b5a4987 100644
--- a/ui/css/treeherder-navbar-panels.css
+++ b/ui/css/treeherder-navbar-panels.css
@@ -1,16 +1,3 @@
-/*
- * Shared navbar panel settings
- */
-
-.th-top-nav-options-panel {
- background-color: white;
- padding: 10px 10px 0;
- border-bottom: 1px solid black;
- max-height: 400px;
- overflow-y: auto;
- font-size: 12px;
-}
-
/*
* Update notification panel
*/
diff --git a/ui/entry-index.js b/ui/entry-index.js
index e145277e9..703d16c4d 100644
--- a/ui/entry-index.js
+++ b/ui/entry-index.js
@@ -61,7 +61,6 @@ import './js/models/bug_suggestions';
import './js/models/text_log_step';
import './js/models/perf/series';
import './js/controllers/main';
-import './js/controllers/settings';
import './js/controllers/repository';
import './js/controllers/notification';
import './js/controllers/filters';
diff --git a/ui/js/controllers/main.js b/ui/js/controllers/main.js
index 6a06e68bf..317a19677 100644
--- a/ui/js/controllers/main.js
+++ b/ui/js/controllers/main.js
@@ -402,7 +402,6 @@ treeherderApp.controller('MainCtrl', [
// Shortcut: escape closes any open panels and clears selected job
['escape', function () {
- $scope.$evalAsync($scope.setSettingsPanelShowing(false));
$scope.$evalAsync($scope.closeJob());
$scope.$evalAsync($scope.setOnscreenShortcutsShowing(false));
}],
@@ -695,11 +694,6 @@ treeherderApp.controller('MainCtrl', [
$scope.onscreenOverlayShowing = tf;
};
- $scope.isSettingsPanelShowing = false;
- $scope.setSettingsPanelShowing = function (tf) {
- $scope.isSettingsPanelShowing = tf;
- };
-
$scope.pinboardCount = thPinboard.count;
$scope.pinnedJobs = thPinboard.pinnedJobs;
$scope.jobFilters = thJobFilters;
diff --git a/ui/js/controllers/settings.js b/ui/js/controllers/settings.js
deleted file mode 100644
index c7c2c4754..000000000
--- a/ui/js/controllers/settings.js
+++ /dev/null
@@ -1,6 +0,0 @@
-import treeherderApp from '../treeherder_app';
-
-treeherderApp.controller('SettingsCtrl',
- function SheriffController() {
- }
-);
diff --git a/ui/partials/main/thGlobalTopNavPanel.html b/ui/partials/main/thGlobalTopNavPanel.html
index 8157c816b..1a0d2bc18 100644
--- a/ui/partials/main/thGlobalTopNavPanel.html
+++ b/ui/partials/main/thGlobalTopNavPanel.html
@@ -174,19 +174,6 @@
-
-