mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:33:52 +08:00
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;
|
||
|
}
|
||
|
}
|