fix(client): background-color in code blocks of questions (#38968)

This commit is contained in:
Tom
2020-06-01 08:08:08 -05:00
committed by GitHub
parent 4af28cf12c
commit a4ee5ea09a

View File

@@ -21,7 +21,7 @@
} }
.video-quiz-options { .video-quiz-options {
background-color: var(--tertiary-background); background-color: var(--primary-background);
} }
/* remove bootstrap margin here */ /* remove bootstrap margin here */
@@ -35,7 +35,18 @@
cursor: pointer; cursor: pointer;
display: flex; display: flex;
font-weight: normal; font-weight: normal;
border: 2px solid var(--secondary-background); border-left: 4px solid var(--tertiary-background);
border-right: 4px solid var(--tertiary-background);
border-top: 2px solid var(--tertiary-background);
border-bottom: 2px solid var(--tertiary-background);
}
.video-quiz-option-label:first-child {
border-top: 4px solid var(--tertiary-background);
}
.video-quiz-option-label:last-child {
border-bottom: 4px solid var(--tertiary-background);
} }
.video-quiz-input-hidden { .video-quiz-input-hidden {