org settings: Fix minor styling inconsistencies.

Fixes #4789.
This commit is contained in:
Cynthia Lin
2017-05-15 10:12:04 -07:00
committed by Tim Abbott
parent 44113d6436
commit 1bea4da0f4
2 changed files with 8 additions and 1 deletions

View File

@@ -13,9 +13,10 @@ exports.show_or_hide_menu_item = function () {
$(".organization-box [data-name='auth-methods']") $(".organization-box [data-name='auth-methods']")
.find("input, button, select, checked").attr("disabled", true); .find("input, button, select, checked").attr("disabled", true);
$(".organization-box [data-name='default-streams-list']") $(".organization-box [data-name='default-streams-list']")
.find("input, button, select").attr("disabled", true); .find("input:not(.search), button, select").attr("disabled", true);
$(".organization-box [data-name='filter-settings']") $(".organization-box [data-name='filter-settings']")
.find("input, button, select").attr("disabled", true); .find("input, button, select").attr("disabled", true);
$(".control-label-disabled").css("color", "#333333");
} }
}; };

View File

@@ -183,6 +183,12 @@
border: 1px solid #eea236; border: 1px solid #eea236;
} }
.new-style .button[disabled="disabled"]:hover {
background-color: #eee;
color: #5bb792;
border-color: #addcc9;
}
/* -- tab switcher -- */ /* -- tab switcher -- */
.new-style .tab-switcher { .new-style .tab-switcher {