-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·244 lines (204 loc) · 4.62 KB
/
styles.css
File metadata and controls
executable file
·244 lines (204 loc) · 4.62 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
.tiny_select_area {
background: lightgrey;
border-radius: .25rem;
border: 1px solid rgba(0, 0, 0, .15);
color: #55595c;
padding: .5rem .75rem;
}
/* Remove the TinyMCE/Moodle "widget" icon from gaps */
/* #tiny_select_area span::after {
display: none !important;
content: none !important;
} */
/* classes without the que prefix are used in the
question editing form
*/
.gapfill .hascorrect {
background: lightblue;
border: solid thin black;
}
.gapfill .hasincorrect {
background-color: red;
border: solid thin black;
box-shadow: 3px 3px #7bc1f7;
font-style: italic;
}
/* Styles for gap spans with feedback */
#tiny_select_area span[id^="id"].hascorrect {
background: lightblue;
border: solid thin black;
}
#tiny_select_area span[id^="id"].hasnocorrect {
border: solid thin black;
box-shadow: 3px 3px #7bc1f7;
font-style: italic;
}
/** remove any padding from gaps */
#tiny_select_area span[id^="id"].item {
padding: 0;
}
.gapfill .attobackground {
background: lightgrey;
border-radius: .25rem;
border: 1px solid rgba(0, 0, 0, .15);
color: #55595c;
display: block;
height: 100%;
left: 0;
line-height: 1.25;
padding: .5rem .75rem;
position: absolute;
top: 0;
width: 100%;
}
/* Visual feedback for gap select area */
#tiny_select_area {
border: 2px dashed #ccc;
padding: 10px;
background-color: #f9f9f9;
min-height: 100px;
}
#tiny_select_area span[id^="id"] {
background-color: white;
border-radius: 3px;
padding: 2px 4px;
cursor: pointer;
transition: all 0.2s ease;
display: inline-block;
}
#tiny_select_area span[id^="id"]:hover {
background-color: #bbdefb;
border-color: #64b5f6;
transform: translateY(-1px);
}
#tiny_select_area .gap-clicked {
animation: gap-pulse 0.3s ease;
background-color: #fff3e0;
border-color: #ffb74d;
transform: scale(1.05);
}
@keyframes gap-pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.gapfill .item {
background: white;
}
/* elements shown via renderer.php at runtime */
.que.gapfill span.gapfeedbackincorrect {
background: #faa;
background-color: #faa;
border-radius: 0.25em;
box-shadow: 2px 2px #7bc1f7;
color: darkslategray;
}
.que.gapfill span.gapfeedbackcorrect {
background: #afa;
background-color: #afa;
border-radius: 0.25em;
box-shadow: 2px 2px #7bc1f7;
color: darkslategray;
}
/* the gap where answers are dropped/keyed in */
.que.gapfill input[type=text] {
background: white;
border: solid black thin;
border-radius: 4px;
color: black;
margin-bottom: 1px;
margin-top: 1px;
padding: 1px;
display: inline-block;
height: inherit;
}
/* glow a little around the border */
.que.gapfill input.droptarget:hover {
box-shadow: 0 0 8px #7bc1f7;
}
.que.gapfill input.droptarget:focus {
box-shadow: 0 0 8px #7bc1f7;
}
.que.gapfill input.droptarget {
text-align: center;
cursor: pointer;
}
.que.gapfill div.answeroptions {
margin-bottom: 15px;
}
.que.gapfill span.draggable.answers {
background: white;
border: solid 1px;
box-shadow: 3px 3px 4px #000;
cursor: pointer;
display: inline-block;
margin: 1px;
margin-right: 4px;
padding-left: 4px;
padding-right: 4px;
vertical-align: middle;
z-index: 3;
border-radius: 4px;
width: max-content;
}
.que.gapfill span.draggable.answers.hide {
display: none;
}
.que.gapfill span.draggable.answers:hover {
box-shadow: 2px 2px 6px #000;
}
/*Displays the correct answer in delimiters if an
incorrec answer was entered */
.que.gapfill span.aftergapfeedback {
color: green;
font-style: italic;
font-weight: bold;
}
/* styling the dropdowns*/
.que.gapfill .qtext select {
display: inline;
border: solid black thin;
border-radius: 3px;
color: black;
padding-bottom: 1px;
padding-top: 1px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.gapfilltable td {
border: solid;
border-width: thin;
}
.gapfillfirstcol {
background-color: #bcbbbb;
}
.gapfillcol {
background-color: lightgray;
}
.gapfilltable th {
background-color: lightgray;
border: solid;
border-width: thin;
}
.gapfilltable caption {
border-bottom: solid;
border-width: thin;
}
.que.gapfill input.correctduplicate {
background-color: #ff0;
}
.que.gapfill input.correct {
background-color: #afa;
}
.que.gapfill select.incorrect {
background-color: #faa;
}
.que.gapfill input.incorrect {
background-color: #faa;
}