mirror of https://github.com/zulip/zulip.git
modals: Update checkbox in deactivate user modal to be same as others.
This commit changes the design of checkbox in deactivate user modal to be same as others in the app. We have added parent element with ".new-style" class for now, since we have this for all other checkbox in the app and this seems to be the simplest solution. In future, we plan to remove the "new-style" class and instead add CSS based on a component for checkbox elements.
This commit is contained in:
parent
5d00662135
commit
f9c739ab9d
|
@ -18,13 +18,15 @@
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</p>
|
</p>
|
||||||
|
<div class="new-style">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input type="checkbox" class="send_email" data-key="{{ key }}" />
|
<input type="checkbox" class="send_email" data-key="{{ key }}" />
|
||||||
|
<span></span>
|
||||||
{{#tr}}
|
{{#tr}}
|
||||||
Notify this user by email?
|
Notify this user by email?
|
||||||
{{/tr}}
|
{{/tr}}
|
||||||
<span></span>
|
|
||||||
</label>
|
</label>
|
||||||
|
</div>
|
||||||
<div class="email_field">
|
<div class="email_field">
|
||||||
<p class="border-top">
|
<p class="border-top">
|
||||||
<strong>{{t "Subject" }}:</strong>
|
<strong>{{t "Subject" }}:</strong>
|
||||||
|
|
Loading…
Reference in New Issue