Add severity table to support case form (#32736)

This commit is contained in:
Cody Baker 2021-12-13 17:25:05 -07:00 committed by GitHub
parent dadaeabda7
commit 05b930019a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 45 additions and 16 deletions

File diff suppressed because one or more lines are too long

View File

@ -41,18 +41,6 @@ form {
appearance: none;
padding-right: 24px;
white-space: pre-wrap;
&[name=priority] {
height: 84px;
@media screen and (max-width: 767.98px) {
height: 104px;
}
@media screen and (max-width: 499.98px) {
height: 124px;
}
}
}
select.form-control:not([data-chosen]) {

View File

@ -0,0 +1,12 @@
.severity-table {
th {
background: $gray-100;
font-size: $font-size-sm;
padding: 8px 16px;
}
td {
border-top: 1px solid $gray-500;
padding: 16px 16px;
}
}

View File

@ -20,9 +20,9 @@
<div class="form-group col-md-12 mb-3 is-select">
<select class="form-control" id="priority" name="priority">
<option disabled selected>Severity Classification</option>
<option value="Sev-1">Severity 1 - Critical Business Impact: DBMS is not functioning or is stopped or severely impacted so that Customer cannot reasonably continue use of DBMS and no Workaround is available.</option>
<option value="Sev-2">Severity 2 - Major Business Impact: DBMS is functioning inconsistently causing significantly impaired Customer usage and productivity, such as periodic work stoppages and feature crashes.</option>
<option value="Sev-3">Severity 3 - Minor Business Impact: DBMS is functioning inconsistently causing slightly impaired Customer usage and productivity but Customer can work around such inconsistency or impairment.</option>
<option value="Sev-1">Severity 1 Critical Business Impact</option>
<option value="Sev-2">Severity 2 Major Business Impact</option>
<option value="Sev-3">Severity 3 Minor Business Impact or General Questions</option>
</select>
</div>
<div class="form-group col-md-12 mb-3">
@ -43,6 +43,35 @@
</div>
</form>
<h2 class="h3 mt-10">Severity Classification Level Definitions</h2>
<table class="severity-table">
<thead>
<tr>
<th style="width:15%;">Severity Classification Level</th>
<th style="width:25%;">Organizational Impact</th>
<th style="width:60%;">Definition</th>
</tr>
</thead>
<tbody>
<tr>
<td>Severity 1</td>
<td>Critical Business Impact</td>
<td>ClickHouse DBMS LTS or stable software release in production use is not functioning or is stopped or severely impacted so that Customer cannot reasonably continue use of DBMS and no Workaround is available</td>
</tr>
<tr>
<td>Severity 2</td>
<td>Major Business Impact</td>
<td>ClickHouse DBMS LTS or stable software release is functioning inconsistently causing significantly impaired Customer usage and productivity, such as periodic work stoppages and feature crashes</td>
</tr>
<tr>
<td>Severity 3</td>
<td>Minor Business Impact or General Questions</td>
<td>ClickHouse DBMS LTS or stable software release is functioning inconsistently causing slightly impaired Customer usage and productivity but Customer can work around such inconsistency or impairment, or Customer has a question or enhancement for the DBMS or ClickHouse not determined an Error</td>
</tr>
</tbody>
</table>
<hr class="is-yellow mt-10">