098881741b
* Show buried until daily limits in overview screen This explains differences between the counts shown in the deck tree and those shown in the overview screen. Closes #1633. * interday learning cards can be buried too (dae) * add 'buried' tooltip to bury counts; generate row in helper fn (dae) * Use grey for buried counts
30 lines
378 B
SCSS
30 lines
378 B
SCSS
.review-count {
|
|
color: var(--review-count);
|
|
}
|
|
|
|
.new-count {
|
|
color: var(--new-count);
|
|
}
|
|
|
|
.learn-count {
|
|
color: var(--learn-count);
|
|
}
|
|
|
|
.zero-count {
|
|
color: var(--zero-count);
|
|
}
|
|
|
|
.bury-count {
|
|
color: var(--disabled);
|
|
font-weight: bold;
|
|
margin-inline-start: 2px;
|
|
|
|
&::before {
|
|
content: "+";
|
|
}
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|