blob: b82ec2bc3ef305843e35a6dfc8a03bbe08ad5b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
.missing_course {
.content {
font-weight: bold;
}
border: 2px solid var(--red);
display: inline-block;
padding: 5px;
margin: 5px 0;
background: var(--white);
}
.mycourses-group-selector {
position: relative;
background-clip: padding-box;
border: 1px solid fade-out($brand-color-lighter, 0.8);
input[type="radio"] {
@extend .sr-only;
&:checked + label {
@include background-icon(accept, info);
}
}
&:hover label {
@include background-icon(accept, info);
}
label {
@include hide-text();
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
}
|