forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
1327 lines (1257 loc) · 31.9 KB
/
styles.css
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/** Bits that can appear on any page. */
.path-mod-quiz .statedetails {
display: block;
font-size: 0.7em;
}
/** Attempt and review pages **/
#page-mod-quiz-attempt #page .controls,
#page-mod-quiz-summary #page .controls,
#page-mod-quiz-review #page .controls {
text-align: center;
margin: 8px auto;
}
#page-mod-quiz-attempt .submitbtns,
#page-mod-quiz-review .submitbtns {
clear: left;
text-align: left;
padding-top: 1.5em;
}
#page-mod-quiz-attempt.dir-rtl .submitbtns,
#page-mod-quiz-review.dir-rtl .submitbtns {
text-align: right;
}
body.jsenabled .questionflagcheckbox {
display: none;
}
#page-mod-quiz-attempt #connection-ok,
#page-mod-quiz-attempt #connection-error {
position: fixed;
top: 0;
width: 80%;
left: 10%;
color: #555;
border-radius: 0 0 10px 10px;
box-shadow: 5px 5px 20px 0 #666666;
padding: 1em 1em 0;
z-index: 10000;
}
#page-mod-quiz-attempt #connection-error {
background-color: #fcc;
}
#page-mod-quiz-attempt #connection-ok {
background-color: #cfb;
width: 60%;
left: 20%;
}
/** Mod quiz attempt **/
.generalbox#passwordbox {
/* Should probably match .generalbox#intro above */
width: 70%;
margin-left: auto;
margin-right: auto;
}
#passwordform {
margin: 1em 0;
}
/* Question navigation block. */
#quiznojswarning {
color: red;
}
#quiznojswarning {
font-size: 0.7em;
line-height: 1.1;
}
.jsenabled #quiznojswarning {
display: none;
}
.path-mod-quiz #user-picture {
margin: 0.5em 0;
}
.path-mod-quiz #user-picture img {
width: auto;
height: auto;
vertical-align: bottom;
}
.path-mod-quiz .qnbutton {
display: block;
position: relative;
float: left;
width: 1.5em;
height: 1.5em;
overflow: hidden;
margin: 0.3em 0.3em 0.3em 0;
padding: 0;
border: 1px solid #bbb;
background: #ddd;
text-align: center;
vertical-align: middle;
line-height: 1.5em !important;
font-weight: bold;
text-decoration: none;
}
.path-mod-quiz.dir-rtl .qnbutton {
float: right;
}
.path-mod-quiz .qnbutton .trafficlight,
.path-mod-quiz .qnbutton .thispageholder {
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.path-mod-quiz .qnbutton.thispage {
border-color: #666;
}
.path-mod-quiz .qnbutton.thispage .thispageholder {
border: 1px solid #666;
}
.path-mod-quiz .qnbutton.flagged .trafficlight {
background: url([[pix:quiz|navflagged]]) no-repeat top right;
}
.path-mod-quiz .qnbutton.notyetanswered,
.path-mod-quiz .qnbutton.requiresgrading,
.path-mod-quiz .qnbutton.invalidanswer {
background-color: white;
}
.path-mod-quiz .qnbutton.correct {
background-color: #cfc;
}
.path-mod-quiz .qnbutton.correct .trafficlight {
border-bottom: 3px solid #080;
}
.path-mod-quiz .qnbutton.partiallycorrect {
background-color: #ffa;
}
.path-mod-quiz .qnbutton.notanswered,
.path-mod-quiz .qnbutton.incorrect {
background-color: #fcc;
}
.path-mod-quiz .qnbutton.notanswered .trafficlight,
.path-mod-quiz .qnbutton.incorrect .trafficlight {
border-top: 3px solid #800;
}
.path-mod-quiz .qnbutton.free:hover {
text-decoration: underline;
}
.path-mod-quiz .qnbutton.free span {
cursor: pointer;
}
.path-mod-quiz .othernav {
clear: both;
margin: 0.5em 0;
}
.path-mod-quiz .othernav a,
.path-mod-quiz .othernav input {
display: block;
margin: 0.5em 0;
}
/* Countdown timer. */
#quiz-timer {
display: none;
margin-top: 1em;
}
#quiz-time-left {
font-weight: bold;
}
#quiz-timer.timeleft15 {
background: #ffffff;
}
#quiz-timer.timeleft14 {
background: #ffeeee;
}
#quiz-timer.timeleft13 {
background: #ffdddd;
}
#quiz-timer.timeleft12 {
background: #ffcccc;
}
#quiz-timer.timeleft11 {
background: #ffbbbb;
}
#quiz-timer.timeleft10 {
background: #ffaaaa;
}
#quiz-timer.timeleft9 {
background: #ff9999;
}
#quiz-timer.timeleft8 {
background: #ff8888;
}
#quiz-timer.timeleft7 {
background: #ff7777;
}
#quiz-timer.timeleft6 {
background: #ff6666;
}
#quiz-timer.timeleft5 {
background: #ff5555;
}
#quiz-timer.timeleft4 {
background: #ff4444;
}
#quiz-timer.timeleft3 {
background: #ff3333;
}
#quiz-timer.timeleft2 {
background: #ff2222;
}
#quiz-timer.timeleft1 {
background: #ff1111;
}
#quiz-timer.timeleft0 {
background: #ff0000;
}
/** mod quiz mod **/
#page-mod-quiz-mod #id_reviewoptionshdr .fitem {
width: 23%;
margin-left: 10px;
}
#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup {
width: 100%;
text-align: left;
margin-left: 0;
}
#page-mod-quiz-edit div.question div.content .questiontext,
#categoryquestions .questiontext {
text-overflow: ellipsis;
position: relative;
zoom: 1;
padding-left: 0.3em;
max-width: 40%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#page-mod-quiz-edit div.question div.content .questionname,
#categoryquestions .questionname {
white-space: nowrap;
overflow: hidden;
zoom: 1;
position: relative;
max-width: 20%;
}
#page-mod-quiz-edit div.editq div.question div.content .singlequestion a .questionname,
div.editq div.question div.content .singlequestion a .questiontext {
text-decoration: underline;
}
#page-mod-quiz-edit.ie6 div.question div.content .questiontext {
width: 50%;
}
#page-mod-quiz-edit.ie6 div.question div.content .questionname {
width: 20%;
}
#page-mod-quiz-mod #id_reviewoptionshdr .fitem {
float: left;
width: 23%;
clear: none;
}
#page-mod-quiz-mod #id_reviewoptionshdr .fitemtitle {
width: 100%;
font-weight: bold;
text-align: left;
height: 2.5em;
margin-left: 0;
}
#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup {
clear: left;
margin: 0 0 1em;
}
#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup > span {
float: left;
clear: left;
line-height: 1.7;
}
#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup span label {
margin-left: 0.4em;
}
#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr .fitem {
float: right;
}
#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr fieldset.fgroup span {
float: right;
clear: right;
}
#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr .fitemtitle {
text-align: right;
}
/** Mod quiz view **/
#page-mod-quiz-view .quizinfo,
#page-mod-quiz-view #page .quizgradefeedback,
#page-mod-quiz-view #page .quizattempt {
text-align: center;
}
#page-mod-quiz-view #page .quizattemptsummary td p {
margin-top: 0;
}
#page-mod-quiz-view table.quizattemptsummary tr.bestrow td {
border-color: #bce8f1;
background-color: #d9edf7;
}
table.quizattemptsummary .noreviewmessage {
color: gray;
}
#page-mod-quiz-view .generaltable.quizattemptsummary {
margin-left: auto;
margin-right: auto;
}
#page-mod-quiz-view .generalbox#feedback {
width: 70%;
margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}
#page-mod-quiz-view .generalbox#feedback h2 {
margin: 0;
}
#page-mod-quiz-view .generalbox#feedback h3 {
text-align: left;
}
#page-mod-quiz-view.dir-rtl .generalbox#feedback h3 {
text-align: center;
}
#page-mod-quiz-view .generalbox#feedback .overriddennotice {
text-align: center;
font-size: 0.7em;
}
.quizstartbuttondiv.quizsecuremoderequired input {
display: none;
}
.jsenabled .quizstartbuttondiv.quizsecuremoderequired input {
display: inline;
}
body.path-mod-quiz .gradedattempt,
body.path-mod-quiz table tbody tr.gradedattempt > td {
border-color: #bce8f1;
background-color: #d9edf7;
}
.quizattemptcounts {
clear: left;
text-align: center;
display:inline;
margin-left:20%;
}
.dir-rtl .quizattemptcounts {
margin-left:0;
margin-right: 20%;
}
#page-mod-quiz-view .quizattemptcounts,
.dir-rtl #page-mod-quiz-view .quizattemptcounts {
display: block;
margin-left: 0;
margin-right: 0;
}
/** Mod quiz summary **/
#page-mod-quiz-summary #content {
text-align: center;
}
#page-mod-quiz-summary .questionflag {
vertical-align: text-bottom;
}
#page-mod-quiz-summary #quiz-timer {
text-align: center;
margin-top: 1em;
}
#page-mod-quiz-summary .submitbtns {
margin-top: 1.5em;
}
@media print {
.quiz-secure-window * {
display: none !important;
}
}
/** Mod quiz review **/
table.quizreviewsummary {
width: 100%;
}
table.quizreviewsummary th.cell {
padding: 1px 0.5em 1px 1em;
font-weight: bold;
text-align: right;
width: 10em;
background: #f0f0f0;
}
table.quizreviewsummary td.cell {
padding: 1px 1em 1px 0.5em;
text-align: left;
background: #fafafa;
}
.dir-rtl table.quizreviewsummary td.cell {
text-align: right;
}
/** Mod quiz make comment or override grade popup. **/
#page-mod-quiz-comment .mform {
width: 100%;
}
#page-mod-quiz-comment .mform fieldset {
margin: 0;
}
#page-mod-quiz-comment .que {
margin: 0;
}
/** Mod quiz report **/
#page-mod-quiz-report h2.main {
clear: both;
}
#page-mod-quiz-report div#commands,
#page-mod-quiz-report .controls {
text-align: center;
}
#page-mod-quiz-report .dubious {
background-color: #fcc;
}
#page-mod-quiz-report .highlight {
border: 1px solid #bce8f1;
background-color: #d9edf7;
}
#page-mod-quiz-report .negcovar {
border : medium solid pink;
}
#page-mod-quiz-report .toggleincludeauto {
text-align: center;
}
#page-mod-quiz-report .gradetheselink {
font-size: 0.8em;
}
#page-mod-quiz-report .mform fieldset.fgroup span label {
margin-right: 14px;
}
#page-mod-quiz-report table th {
white-space: normal;
}
#page-mod-quiz-report table#attempts td,
#page-mod-quiz-report table.quizresponseanalysis td {
word-wrap: break-word;
max-width: 20em;
}
#page-mod-quiz-report table.titlesleft td.c0 {
font-weight: bold;
}
#page-mod-quiz-report table .numcol {
text-align: center;
vertical-align : middle !important;
}
#page-mod-quiz-report table#attempts {
clear: both;
width: 80%;
margin: 0.2em auto;
}
#page-mod-quiz-report table#attempts .header,
#page-mod-quiz-report table#attempts .cell {
padding: 4px;
}
#page-mod-quiz-report table#attempts .header .commands {
display: inline;
}
#page-mod-quiz-report table#attempts .picture {
width: 40px;
}
#page-mod-quiz-report table#attempts td {
border-left-width: 1px;
border-right-width: 1px;
border-left-style: solid;
border-right-style: solid;
vertical-align: middle;
}
#page-mod-quiz-report table#attempts .header {
text-align: left;
}
#page-mod-quiz-report table#attempts .picture {
text-align: center !important;
}
#page-mod-quiz-report table#attempts.grades span.que,
#page-mod-quiz-report table#attempts span.avgcell {
white-space: nowrap;
}
#page-mod-quiz-report table#attempts span.que .requiresgrading {
white-space: normal;
}
#page-mod-quiz-report table#attempts .questionflag {
vertical-align: text-bottom;
padding-left: 6px;
}
.dir-rtl#page-mod-quiz-report table#attempts .questionflag {
padding-right: 6px;
padding-left: 0;
}
#page-mod-quiz-report .graph.flexible-wrap {
text-align: center;
overflow: auto;
}
#page-mod-quiz-report #cachingnotice {
margin-bottom: 1em;
padding: 0.2em;
}
#page-mod-quiz-report #cachingnotice .singlebutton {
margin: 0.5em 0 0;
}
#page-mod-quiz-report .bold .reviewlink {
font-weight: normal;
}
#page-mod-quiz-report tr.lastrowforattempt {
border-bottom: lightgrey solid 0.2em;
}
/** Mod quiz edit **/
#page-mod-quiz-edit h2.main {
display: inline;
padding-right: 1em;
clear: left;
}
#categoryquestions > tbody > tr:nth-of-type(even) {
background: #e4e4e4;
}
#categoryquestions > tbody > tr:nth-of-type(even).highlight {
background-color: #AAFFAA;
}
#categoryquestions .header {
text-align: center;
padding: 0 2px;
border: 0 none;
}
#categoryquestions th.modifiername .sorters,
#categoryquestions th.creatorname .sorters {
font-weight: normal;
font-size: 0.8em;
}
table#categoryquestions {
width: 100%;
overflow: hidden;
table-layout: fixed;
}
#categoryquestions .iconcol {
width: 15px;
text-align: center;
padding: 0;
}
#categoryquestions .checkbox {
width: 19px;
text-align: center;
padding: 0;
}
#categoryquestions .qtype {
text-align: center;
}
#categoryquestions .qtype {
width: 28px;
padding: 0;
}
#categoryquestions .questiontext p {
margin: 0;
}
#page-mod-quiz-edit div.quizcontents {
float: left;
width: 70%;
display: block;
clear: left;
}
#page-mod-quiz-edit div.quizwhenbankcollapsed {
width: 100%;
}
#page-mod-quiz-edit div.quizpage {
display: block;
clear: both;
width: 100%;
}
#page-mod-quiz-edit div.quizpage span.pagetitle {
margin-top: 0.3em;
float: left;
display: block;
color: #006;
}
#page-mod-quiz-edit div.quizpage .pagecontent {
margin-top: 0.3em;
display: block;
float: left;
position: relative;
margin-left: 0.3em;
margin-right: 0.3em;
margin-bottom: 0.2em;
border-left: thin solid #777;
line-height: 1.3em;
border-radius: 0.6em;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
width: 88%;
padding: 0.15em 0 0.3em;
background-color: #d6d6d6;
}
#page-mod-quiz-edit div.quizpage .pagecontent .pagestatus {
border-bottom-right-radius: 0.3em;
border-top-right-radius: 0.3em;
margin: 0.3em;
padding: 0.1em 0.1em 0.1em 0.3em;
background-color: #eee;
font-weight: bold;
}
#page-mod-quiz-edit div.quizpage .pagecontent form#addquestion {
background-color: #fff;
}
#page-mod-quiz-edit div.quizpage .pagecontent form.randomquestionform div {
/* it is a mystery why this has to be inline-table but otherwise the layout gets screwed, even if it is "inline" */display: inline-table;
}
#page-mod-quiz-edit div.quizpage .pagecontent form.randomquestionform div input {
display: inline;
}
#page-mod-quiz-edit .addpage {
clear: both;
padding-top: 0.3em;
float: right;
margin-right: 2em;
}
#page-mod-quiz-edit .statusdisplay {
background-color: #ffc;
clear: both;
margin: 0.3em 1em 0.3em 0;
padding: 1px ;
/* Stop margin collapse. */
}
#page-mod-quiz-edit .statusdisplay p {
margin: 0.4em;
}
#page-mod-quiz-edit div.reorder .reordercontrols {
clear: both;
padding-right: 1em;
margin-top: 0.5em;
padding-top: 0.5em;
padding-bottom: 0.5em
}
#page-mod-quiz-edit div.reorder .reordercontrols .moveselectedonpage {
clear: right;
float: right;
padding: 0.5em 0.3em;
text-align: right;
}
#page-mod-quiz-edit div.reorder .reordercontrols .addnewpagesafterselected,
#page-mod-quiz-edit .repaginatecommand {
float: right;
clear: right;
padding-right: 1em;
}
#page-mod-quiz-edit div.reorder .reordercontrols .deleteselected {
float: right;
margin-right: 1em;
}
#page-mod-quiz-edit div.reorder div.question {
padding-top: 0.2em;
}
#page-mod-quiz-edit div.reorder div.question div.qnum {
width: 2.9em;
padding-top: 0.1em;
}
#page-mod-quiz-edit .reorder div.question div.content {
width: 87%;
float: left;
position: relative;
border-radius: 0.3em;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
line-height: 1.2em;
padding: 0.1em;
background-color: #F9F9F9;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer .quiz_randomquestion {
position: relative;
}
#page-mod-quiz-edit .reorder div.question div.content div.quiz_randomquestion {
line-height: 1em;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer {
overflow: hidden;
white-space: nowrap;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer .randomquestioncategory {
overflow: hidden;
white-space: nowrap;
display: inline;
float: none;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer .randomquestioncategory label {
max-width: 25%;
overflow: hidden;
padding-left: 0.3em;
white-space: nowrap;
display: inline-block;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer .randomquestionfromcategory label {
overflow: hidden;
white-space: nowrap;
display: inline-block;
}
#page-mod-quiz-edit .reorder .questioncontentcontainer .randomquestionfromcategory,
#page-mod-quiz-edit .reorder div.question div.content .questionpreview {
display: inline;
float: none;
}
#page-mod-quiz-edit .reorder fieldset {
display: inline;
}
#page-mod-quiz-edit div.reorder div.question div.qnum {
text-align: right;
font-size: 1em;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist {
padding-left: 0.2em;
padding-right: 0.2em;
clear: both;
margin: 0.5em;
margin-top: 0.8em;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist .totalquestionsinrandomqcategory {
overflow: auto;
white-space: normal;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist ul li {
clear: left;
width: 100%;
overflow: hidden;
white-space: nowrap;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist ul li img {
padding-right: 0.3em;
}
#page-mod-quiz-edit .questioncontentcontainer div.randomquestionqlist ul li span {
display: inline;
}
#page-mod-quiz-edit .questioncontentcontainer a {
text-decoration: underline;
}
#page-mod-quiz-edit .questioncontentcontainer div.singlequestion a {
text-decoration: underline;
}
#page-mod-quiz-edit .questioncontentcontainer .randomquestioncategory {
font-weight: bold;
}
#page-mod-quiz-edit div.question {
clear: left;
width: 100%;
}
#page-mod-quiz-edit div.question div.qnum {
display: block;
float: left;
width: 1.4em;
padding-right: 0.3em;
padding-left: 0;
text-align: right;
color: #333;
}
#page-mod-quiz-edit div.question div.questioncontainer {
background-color: #ffc;
}
#page-mod-quiz-edit div.editq div.question div.content {
width: 87%;
float: left;
position: relative;
border-radius: 0.6em;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
line-height: 1.4em;
padding: 0.5em;
}
#page-mod-quiz-edit div.question div.content div.points {
top: 0.5em;
border-left: 0.4em solid #FFF;
width: 8.5em;
padding: 0.2em;
line-height: 1em;
max-width: 30%;
position: absolute;
right: 60px;
border-radius: 0.2em;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
display: block;
margin: 0;
background-color: #ddf;
}
#page-mod-quiz-edit div.question div.content div.points input {
width: 2em;
padding: 0;
}
#page-mod-quiz-edit div.question div.content div.points input.pointssubmitbutton {
width: auto;
}
#page-mod-quiz-edit div.question div.content div.qorder {
line-height: 1em;
max-width: 30%;
position: absolute;
right: 60px;
border-radius: 0.2em;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
display: block;
margin: 0;
background-color: #ddf;
}
#page-mod-quiz-edit div.question div.content .editicon {
width: 15px;
}
#page-mod-quiz-edit div.question div.content .singlequestion .questionname,
#page-mod-quiz-edit div.question div.content .singlequestion .questiontext {
display: inline-block;
}
#page-mod-quiz-edit div.question div.content .singlequestion .questionpreview {
background-color: #eee;
}
#page-mod-quiz-edit div.question div.content .questiontype {
display: block;
clear: left;
float: left;
}
#page-mod-quiz-edit.dir-rtl div.question div.content .questiontype {
clear: right;
float: right;
}
#page-mod-quiz-edit div.question div.content .questionpreview {
display: block;
float: left;
margin-left: 0.3em;
padding-left: 0.2em;
padding-right: 0.2em;
}
#page-mod-quiz-edit div.question div.content .questionpreview a {
background-color: #eee;
}
#page-mod-quiz-edit div.question div.content div.quiz_randomquestion .questionpreview {
display: inline;
float: none;
}
#page-mod-quiz-edit div.question div.content div.questioncontrols {
float: right;
width: 55px;
position: absolute;
right: 0.3em;
top: 0;
display: block;
padding: 0.2em;
background-color: #F9F9F9;
text-align: right;
}
#page-mod-quiz-edit div.question div.content div.questioncontrols img.upwithoutdown {
padding-right: 12px;
display: inline;
}
#page-mod-quiz-edit div.question div.content .questiontext {
font-weight: bold;
}
#page-mod-quiz-edit div.question div.content .questiontype {
font-style: italic;
}
#page-mod-quiz-edit .editq div.question div.qnum {
padding-top: 0.2em;
}
#page-mod-quiz-edit .editq div.question {
padding-top: 0.3em;
}
#page-mod-quiz-edit .editq div.questioncontentcontainer div.singlequestion img {
float: left;
padding-top: 0.3em;
padding-right: 0.3em;
}
#page-mod-quiz-edit .editq div.question div.content {
background-color: #F9F9F9;
}
#page-mod-quiz-edit .editq div.question div.content .randomquestioncategory {
margin-top: 0.4em;
position: relative;
display: inline-block;
}
#page-mod-quiz-edit .editq div.question div.content .randomquestioncategory a {
display: block;
max-width: 15em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
float: left;
position: relative;
}
#page-mod-quiz-edit .editq div.question div.content .questionpreview {
float: left;
}
#page-mod-quiz-edit .editq div.question div.content .questionpreview a {
font-weight: normal;
margin-left: 0em;
display: inline;
float: none;
}
#page-mod-quiz-edit .editq div.question div.content .randomquestioncategory .questionpreview img {
padding-right: 0.3em;
}
#page-mod-quiz-edit .editq div.question div.content .singlequestion .questioneditbutton .questionname,
#page-mod-quiz-edit .editq div.question div.content .singlequestion .questioneditbutton .questiontext {
float: left;
}
#page-mod-quiz-edit .reorder div.question div.content .singlequestion.missingtype .questionname,
#page-mod-quiz-edit .editq div.question div.content .singlequestion.missingtype .questionname {
font-style: italic;
max-width: 75%;
}
#page-mod-quiz-edit .editq div.question div.description div.content .questiontext {
max-width: 75%;
}
#page-mod-quiz-edit .editq div.question div.qnum {
font-size: 1.5em;
}
table#categoryquestions td,
#page-mod-quiz-edit table#categoryquestions th {
overflow: hidden;
white-space: nowrap;
}
.questionbankwindow.block {
float: right;
width: 30%;
right: 0.3em;
padding-bottom: 0.5em;
display: block;
border-width: 0;
}
.questionbankwindow.block .content {
padding: 0;
}
.questionbankwindow .choosecategory,
.questionbankwindow .createnewquestion {
padding: 0.3em;
}
.questionbankwindow .createnewquestion .singlebutton {
display: inline;
}
.questionbankwindow #catmenu_jump {
display: block;
}
.questionbank div.categoryquestionscontainer,
.questionbank .categorysortopotionscontainer,
.questionbank .categorypagingbarcontainer,
.questionbank .categoryselectallcontainer {
padding-left: 0.3em;
padding-right: 0.3em;
}
.noquestionsincategory {
clear: both;
padding-top: 1em;
padding-bottom: 1em;
}
.modulespecificbuttonscontainer {
padding-left: 0.3em;
padding-right: 0.3em;
}
.quizquestionlistcontrols {
text-align: center;
}
.categoryinfo {
padding: 0.3em;
}
.path-mod-quiz .gradingdetails {