diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index ac8f3ebc26ed7..23d8fa9cbbfbf 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -56,8 +56,7 @@ input { .personal-settings-setting-box { .section { padding: 10px 30px; - - h3 { + .headerbar-label { margin-bottom: 0; } diff --git a/apps/settings/js/federationsettingsview.js b/apps/settings/js/federationsettingsview.js index a4a1a31223efc..50b8bd84c593c 100644 --- a/apps/settings/js/federationsettingsview.js +++ b/apps/settings/js/federationsettingsview.js @@ -82,7 +82,7 @@ ]; _.each(this._inputFields, function(field) { - var $icon = self.$('#' + field + 'form h3 > .federation-menu'); + var $icon = self.$('#' + field + 'form .headerbar-label > .federation-menu'); var excludedScopes = [] if (fieldsWithV2Private.indexOf(field) === -1) { @@ -245,7 +245,7 @@ }, _setFieldScopeIcon: function(field, scope) { - var $icon = this.$('#' + field + 'form > h3 .icon-federation-menu'); + var $icon = this.$('#' + field + 'form > .headerbar-label .icon-federation-menu'); $icon.removeClass('icon-phone'); $icon.removeClass('icon-password'); diff --git a/apps/settings/src/components/PersonalInfo/DetailsSection.vue b/apps/settings/src/components/PersonalInfo/DetailsSection.vue index 7d11e50d3bcab..03e3f58f725a0 100644 --- a/apps/settings/src/components/PersonalInfo/DetailsSection.vue +++ b/apps/settings/src/components/PersonalInfo/DetailsSection.vue @@ -22,7 +22,7 @@