-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpractice-direction-question.css
20 lines (19 loc) · 1.05 KB
/
practice-direction-question.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* warn on back questions */
.rem-container--question-rem-type.rem-container--forwards-practice-disabled.rem-container--backwards-practice-enabled
.separator-symbol:not(.concept_rem_type):not(.descriptor_rem_type):not(.question_rem_type)::after,
.rem-container--question-rem-type.rem-container--forwards-practice-disabled.rem-container--backwards-practice-enabled
.MultiLineCardIndicator::after {
content: var(--question-backward-practice-icon, "!⇐!");
font-size: 15px;
color: var(--question-backward-practice-color, red);
margin-left: 3px;
}
.rem-container--question-rem-type.rem-container--forwards-practice-enabled.rem-container--backwards-practice-enabled
.separator-symbol:not(.concept_rem_type):not(.descriptor_rem_type):not(.question_rem_type)::after,
.rem-container--question-rem-type.rem-container--forwards-practice-enabled.rem-container--backwards-practice-enabled
.MultiLineCardIndicator::after {
content: var(--question-both-practice-icon, "!⇔!");
font-size: 15px;
color: var(--question-both-practice-color, red);
margin-left: 3px;
}