mirror of https://github.com/zulip/zulip.git
config_error: Change the look of the page.
Replaces the green theme with the old Zulip octopus with a plain, white page.
This commit is contained in:
parent
6593ccd7fc
commit
898e47fbdd
|
@ -5,24 +5,28 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block portico_content %}
|
||||
<div class="error_page" style="padding-bottom: 60px;">
|
||||
<div class="container">
|
||||
<div class="row-fluid">
|
||||
<img src="{{ static('images/errors/500art.svg') }}" alt=""/>
|
||||
<div class="errorbox config-error">
|
||||
<div class="errorcontent">
|
||||
<h1 class="lead">{{ _("Configuration error") }}</h1>
|
||||
<br />
|
||||
<div id="config_error_page" class="flex full-page">
|
||||
<div class="new-style">
|
||||
<div class="pitch">
|
||||
<h1>
|
||||
{{ _("Configuration error") }}
|
||||
</h1>
|
||||
</div>
|
||||
<div class="white-box">
|
||||
<div class="errorbox config-error">
|
||||
<div class="errorcontent">
|
||||
<p>
|
||||
{% block error_content %}
|
||||
{% endblock %}
|
||||
</p>
|
||||
|
||||
<p>After making your changes, remember to restart
|
||||
the Zulip server.</p>
|
||||
<p><a href=""> Refresh</a> to try again or <a href="/login/">click here</a> to go back to the login page.</p>
|
||||
</div>
|
||||
|
||||
<p>After making your changes, remember to restart
|
||||
the Zulip server.</p>
|
||||
<p><a href=""> Refresh</a> to try again or <a href="/login/">click here</a> to go back to the login page.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -992,6 +992,17 @@ input.new-organization-button {
|
|||
}
|
||||
}
|
||||
|
||||
#config_error_page {
|
||||
.pitch {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.white-box {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
.error_page {
|
||||
min-height: calc(100vh - 290px);
|
||||
height: 100%;
|
||||
|
|
Loading…
Reference in New Issue