mirror of https://github.com/zulip/zulip.git
Replace the modal footers with an exit button at top of overlay.
This replaces the bootstrap default modal footers that have a [data-dismiss] button with an .exit button in the top section of the overlay that is styled congruently to the current subscriptions page.
This commit is contained in:
parent
1a28564ed4
commit
642dac27b9
|
@ -329,7 +329,7 @@ $(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".informational-overlays").click(function (e) {
|
$(".informational-overlays").click(function (e) {
|
||||||
if ($(e.target).is(".informational-overlays, [data-dismiss]")) {
|
if ($(e.target).is(".informational-overlays, .exit")) {
|
||||||
ui.hide_info_overlay();
|
ui.hide_info_overlay();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -32,19 +32,25 @@
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.informational-overlays .overlay-content h1 {
|
|
||||||
padding: 0px 0px 7px 10px;
|
|
||||||
|
|
||||||
font-weight: 300;
|
|
||||||
font-size: 1.8em;
|
|
||||||
|
|
||||||
border-bottom: 1px solid #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.informational-overlays .overlay-tabs {
|
.informational-overlays .overlay-tabs {
|
||||||
padding: 10px 0px;
|
padding: 10px 0px;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
text-align: center;
|
}
|
||||||
|
|
||||||
|
.informational-overlays .overlay-tabs .tab-switcher {
|
||||||
|
margin-left: 15px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.informational-overlays .overlay-tabs .exit {
|
||||||
|
float: right;
|
||||||
|
font-size: 1.8em;
|
||||||
|
color: #aaa;
|
||||||
|
font-weight: 600;
|
||||||
|
margin: 1px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.informational-overlays .overlay-modal {
|
||||||
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.informational-overlays .overlay-modal .modal-body {
|
.informational-overlays .overlay-modal .modal-body {
|
||||||
|
|
|
@ -125,8 +125,8 @@ var page_params = {{ page_params }};
|
||||||
</div><!--/row-->
|
</div><!--/row-->
|
||||||
<div class="informational-overlays new-style">
|
<div class="informational-overlays new-style">
|
||||||
<div class="overlay-content">
|
<div class="overlay-content">
|
||||||
<h1>Zulip Usage Guide</h1>
|
|
||||||
<div class="overlay-tabs">
|
<div class="overlay-tabs">
|
||||||
|
<button class="button no-style exit">×</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="overlay-body">
|
<div class="overlay-body">
|
||||||
{% include "zerver/keyboard_shortcuts.html" %}
|
{% include "zerver/keyboard_shortcuts.html" %}
|
||||||
|
|
|
@ -129,7 +129,4 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
|
||||||
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">{{ _("Close") }}</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -102,7 +102,4 @@ Quoted block
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
|
||||||
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">{{ _("Close") }}</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -86,7 +86,4 @@
|
||||||
containing the keyword <span class="operator_value">keyword</span>.</p>
|
containing the keyword <span class="operator_value">keyword</span>.</p>
|
||||||
{% endtrans %}
|
{% endtrans %}
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
|
||||||
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">{{ _('Close') }}</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue