mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
a1e7a4ccca
Summary: Ref T4324. Add some version information to the server status output, and setup checks to test for an unreachable or out-of-date server. Test Plan: - With server down, hit reasonable setup check. - With server up and at a bad version, hit reasonable setup check. - Viewed `/notification/status/`. - The CSS thing fixes this: {F114445} Reviewers: btrahan, chad Reviewed By: chad CC: chad, aran Maniphest Tasks: T4324 Differential Revision: https://secure.phabricator.com/D8251
116 lines
1.8 KiB
CSS
116 lines
1.8 KiB
CSS
/**
|
|
* @provides setup-issue-css
|
|
*/
|
|
|
|
|
|
.setup-issue-background {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.setup-issue-shell {
|
|
max-width: 760px;
|
|
margin: 16px auto;
|
|
}
|
|
|
|
.setup-issue {
|
|
background: #fff;
|
|
border: 1px solid #BFCFDA;
|
|
border-bottom: 1px solid #8C98B8;
|
|
}
|
|
|
|
.setup-issue p {
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.setup-issue table {
|
|
width: 90%;
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
border: 1px solid #dfdfdf;
|
|
}
|
|
|
|
.setup-issue table th {
|
|
text-align: right;
|
|
width: 30%;
|
|
background: #efefef;
|
|
border: 1px solid #dfdfdf;
|
|
padding: 8px;
|
|
}
|
|
|
|
.setup-issue table td {
|
|
border: 1px solid #dfdfdf;
|
|
padding: 8px;
|
|
}
|
|
|
|
.setup-issue pre {
|
|
width: 95%;
|
|
margin: auto;
|
|
border: 1px solid #dfdfdf;
|
|
padding: 10px 2%;
|
|
background: #efefef;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.setup-issue tt {
|
|
color: #74777D;
|
|
}
|
|
|
|
.setup-issue em {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.setup-issue-instructions {
|
|
font-size: 14px;
|
|
padding: 12px 0;
|
|
line-height: 20px;
|
|
background: #fff;
|
|
border-bottom: 1px solid #BFCFDA;
|
|
margin: 0 12px;
|
|
}
|
|
|
|
.setup-fatal .setup-issue-instructions {
|
|
color: #c0392b;
|
|
background: #f4dddb;
|
|
padding: 12px;
|
|
margin: 0 0 12px;
|
|
border-bottom: 1px solid #c0392b;
|
|
}
|
|
|
|
.setup-issue-name {
|
|
color: #6B748C;
|
|
text-shadow: 0 1px #fff;
|
|
padding: 16px 12px;
|
|
border-bottom: 1px solid #BFCFDA;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
background-image: url(/rsrc/image/lightblue-header.png);
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
.setup-issue-next {
|
|
padding: 12px;
|
|
border-top: 1px solid #BFCFDA;
|
|
background: #daeaf3;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
color: #2980b9;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.setup-issue-config {
|
|
padding: 0 12px;
|
|
background: #fff;
|
|
}
|
|
|
|
.setup-issue ul {
|
|
width: 90%;
|
|
margin: 1em auto;
|
|
list-style: circle;
|
|
}
|
|
|
|
.setup-issue-debug {
|
|
margin-top: 8px;
|
|
padding: 4px;
|
|
text-align: right;
|
|
color: #74777D;
|
|
}
|