discourse/app/assets/stylesheets/common/base/explain-reviewable.scss
Robin Ward bde0ef865f
FEATURE: Adds a pop up that shows a more detailed score for reviewables (#8035)
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.
2019-09-04 09:56:25 -06:00

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;
}
}