mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
bde0ef865f
If you click a (?) icon beside the reviewable status a pop up will appear with expanded informatio that explains how the reviewable got its score, and how it compares to system thresholds.
38 lines
467 B
SCSS
38 lines
467 B
SCSS
.explain-reviewable {
|
|
min-width: 500px;
|
|
|
|
.thresholds {
|
|
margin-top: 1em;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
table td {
|
|
padding: 0.5em;
|
|
}
|
|
td.sum {
|
|
text-align: right;
|
|
}
|
|
td.sum.total {
|
|
font-weight: bold;
|
|
}
|
|
tr.total {
|
|
td {
|
|
background-color: $primary-low;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.op {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.score-value-type {
|
|
color: $primary-medium;
|
|
}
|
|
|
|
.op:last-of-type {
|
|
display: none;
|
|
}
|
|
}
|