Fix list templates

TODO: Sensible place to define the 'expected answer' stuff.
This commit is contained in:
2020-09-03 12:38:52 +01:00
parent c1182efa54
commit e602058771
12 changed files with 128 additions and 222 deletions

View File

@@ -42,7 +42,7 @@
a {
color: $blue;
}
.badge, .btn-success {
.badge, .btn-success, .bg-warning {
color: black;
}
.badge-dark, .badge-secondary, .btn-primary {

View File

@@ -114,6 +114,11 @@ svg {
white-space: no-wrap;
}
input[required]::after,select[required]::after {
content: '*';
color: red;
}
html.embedded {
display: flex;
flex-direction: column;
@@ -158,8 +163,3 @@ html.embedded {
max-width: 3em;
}
}
(input,select)[required]::after {
content: '*';
color: red;
}