blob: 114a5d49787d23d419120f12c6f3ee7e4f3a2e54 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* CodeQ: an online programming tutor.
Copyright (C) 2015,2016 UL FRI
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
a.hint-static-link {
cursor: pointer;
}
div.hint-static img {
max-height: 12em;
max-width: 80%;
/* center img trick */
display: block;
margin-left: auto;
margin-right: auto;
}
div.hints > div.feedback {
border-top: 1px solid #ddd;
margin-bottom: 1.5em;
margin-top: 0.5em;
opacity: 0.75;
}
div.hints > div.feedback:first-child {
border-top: 1px solid gray;
opacity: 1;
}
div.hints > div.feedback:hover {
opacity: 1;
}
div.hints > div.feedback > div {
margin-bottom: 0.5em;
margin-top: 0.5em;
}
.popup-hint > :last-child {
margin-bottom: 0;
}
/* the highlighted part of the text, used in pop-up and drop-down hints */
.editor-mark {
background-color: #e7c3c3;
}
.editor-mark.insert {
background-color: #a0d850; /* fallback if gradients are not supported */
background: linear-gradient(to right, #a0d850, transparent);
border-bottom: 1px solid #70a820;
border-left: 1px solid #70a820;
}
.editor-mark.remove {
background-color: #ffbb99;
border-bottom: 1px solid #cf8b69;
}
.editor-mark.change {
background-color: #f4dd32;
border-bottom: 1px solid #c4ad02;
}
|