mirror of https://github.com/zulip/zulip.git
profile_settings: Remove "hide" class from h3 element.
We already have "inline-block" class for the h3 element
in profile_settings.hbs, so the display property is set
as "inline-block" and the CSS set by "hide" class is
overridden. We should not have "hide" class for this
element, since we want to show that element and not
hide it.
This was probably added while picking code of some
other element in bb816e199
.
This commit is contained in:
parent
2a60e4c1e6
commit
2aeda1b0c4
|
@ -1,7 +1,7 @@
|
|||
<div id="profile-settings" class="settings-section show" data-name="profile">
|
||||
<div class="profile-settings-form">
|
||||
<div class="profile-main-panel inline-block">
|
||||
<h3 class="inline-block hide" id="user-profile-header">{{t "Profile" }}</h3>
|
||||
<h3 class="inline-block" id="user-profile-header">{{t "Profile" }}</h3>
|
||||
<div id="user_details_section">
|
||||
<div class="full-name-change-container">
|
||||
<div class="input-group inline-block grid user-name-parent">
|
||||
|
|
Loading…
Reference in New Issue