-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
925 lines (791 loc) · 23.6 KB
/
Copy pathstyles.css
File metadata and controls
925 lines (791 loc) · 23.6 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
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
/*
.generalbox .missingmodule
.generalbox .rubricmappingexplained
.gradingform_erubric.editor[.frozen|.editable]
.criteria
.criterion[.first][.last][.odd|.even]
.controls
.moveup
[input type=submit]
.delete
[input type=submit]
.movedown
[input type=submit]
.duplicate
[input type=submit]
.description
.levels
td.level[.first][.last][.odd|.even]
div.level-wrapper
.definition
[textarea]
.score
span
[input type=text]
.delete
[input type=submit]
.addlevel
[input type=submit]
.remark
textarea
.addcriterion
[input type=submit]
.enrichedcriterion[.first][.last][.odd|.even]
.enrichedcriteria
div .enriched-wrapper
div .rich
select .select .criteriontype
div .rich
select .select .collaborationtype
div .rich .coursemodule
div .modulecontainer
ul
li
span [.nameoverflow][.nameoverflowedit][.missing]
select .select .activity
select .select .resource
select .select .assignment
div .rich
select .select .operator
div .rich
select .select .referencetype
.levels
td.enrichedlevel[.first][.last][.odd|.even]
div.richvalue
span .enrichedvalue
[input type=text]
i
td.addlevel
span .helptooltip
.options
.optionsheading
.option.OPTIONNAME
.option .enrichmentoptions
.gradingform_erubric[.review][.evaluate[.editable|.frozen]]
.criteria
.criterion[.first][.last][.odd|.even]
.description
.levels
td.level[.first][.last][.odd|.even]
div.level-wrapper
div.radio
input
.definition
.score
span
.enrichedcriterion[.first][.last][.odd|.even]
.enrichedcriteria
div .enriched-wrapper
div .rich
div .plainvaluerich
div .rich .coursemodule
div .modulecontainer
ul
li
.levels
td.enrichedlevel[.first][.last][.odd|.even]
div.richvalue
span .enrichedvalue
i
*/
/** E-rubric form. **/
/* Importance needed to properly show the notifications above criteria. */
.gradingform_erubric_editform .editor_atto_notification {
position: static;
height: auto;
}
.gradingform_erubric_editform .status {
font-weight: normal;
text-transform: uppercase;
font-size: 60%;
padding: 0.25em;
border: 1px solid #eee;
}
.gradingform_erubric_editform .status.ready {
background-color: #e7f1c3;
border-color: #aea;
}
.gradingform_erubric_editform .status.draft {
background-color: #f3f2aa;
border-color: #ee2;
}
.gradingform_erubric .enrichedcriteria {
padding: 3px;
}
.gradingform_erubric.editor .criterion .controls,
.gradingform_erubric .criterion .description,
.gradingform_erubric .criterion .levels,
.gradingform_erubric.editor .criterion .addlevel,
.gradingform_erubric .criterion .remark,
.gradingform_erubric .criterion .levels .level {
vertical-align: top;
}
/* better view of rubric with many levels on preview */
.gradingform_erubric.editor {
overflow: auto;
position: relative;
}
.gradingform_erubric.editor .criterion .controls,
.gradingform_erubric .criterion .description,
.gradingform_erubric.editor .criterion .addlevel,
.gradingform_erubric .criterion .remark,
.gradingform_erubric .criterion .levels .level {
padding: 3px;
}
.gradingform_erubric.editor .criterion .addlevel,
.gradingform_erubric .criterion .remark {
max-width: 100px;
}
/* Importance needed for grading */
.gradingform_erubric .criterion .remark textarea {
width: 100%;
padding: 0px;
}
/** Rubric results during grading from Learning Analytics **/
.gradingform_erubric .enrichedcriterion .results {
padding-left: 4px;
min-width: 112px;
vertical-align: middle;
}
.gradingform_erubric .enrichedcriterion .results hr {
width: 38px;
margin: 1px 0px 2px 39px;
color: #000;
border-top: 0px;
border-bottom: 1px solid #000;
}
.gradingform_erubric .enrichedcriterion .results .studentico {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:i/user]]) no-repeat center top;
margin: 0px 2px;
padding: 0px;
}
.gradingform_erubric .enrichedcriterion .results .studentsico {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:i/cohort]]) no-repeat center top;
margin: 0px 2px;
padding: 0px;
}
.gradingform_erubric .enrichedcriterion .results .rightarrow {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:t/right]]) no-repeat center bottom;
margin-right: 3px;
}
.gradingform_erubric .enrichedcriterion .results .downarrow {
width: 16px;
height: 16px;
background: transparent url([[pix:i/down]]) no-repeat center bottom;
margin: 5px auto;
}
.gradingform_erubric .enrichedcriterion .results .ranges {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:t/ranges]]) no-repeat center bottom;
}
.gradingform_erubric .enrichedcriterion .results .valuecontainer {
display: inline-block;
width: 40px;
height: 16px;
font-weight: bold;
text-align: center;
cursor: default;
}
.gradingform_erubric .enrichedcriterion .results .calculator {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:i/calc]]) no-repeat center top;
margin: 0px 2px;
padding: 0px;
}
.gradingform_erubric .enrichedcriterion .results .outcome {
display: inline-block;
width: 16px;
height: 16px;
background: transparent url([[pix:i/outcomes]]) no-repeat center bottom;
}
.gradingform_erubric .enrichedcriterion .results .valuenull {
width: 32px;
height: 32px;
background: transparent url([[pix:b/edit-delete]]) no-repeat center;
background-size: cover;
margin: auto;
}
.gradingform_erubric.view {
overflow: auto;
}
.gradingform_erubric.view .criterion .remark {
font-style: italic;
font-size: 90%;
overflow: auto;
}
.gradingform_erubric .criteria {
width: 100%;
height: 100%;
max-height: 190px;
}
.gradingform_erubric .criterion {
border: 1px solid #ddd;
overflow: hidden;
}
.gradingform_erubric .criterion.even {
background: #f0f0f0;
}
.gradingform_erubric .criterion .description {
width: 160px;
font-weight: bold;
}
.gradingform_erubric .criterion .levels table {
width: 100%;
height: 100%;
}
.gradingform_erubric .criterion .levels,
.gradingform_erubric .criterion .levels table,
.gradingform_erubric .criterion .levels table tbody {
padding: 0;
margin: 0;
}
/* Importance needed when student views evaluation. */
.gradingform_erubric .criterion .levels .level {
border-left: 1px solid #ddd;
max-width: 145px;
overflow: auto;
}
.gradingform_erubric .criterion .levels .level .level-wrapper {
position: relative;
min-width: 125px;
}
/* Importance needed for the textarea NOT to appear too small. */
.gradingform_erubric .criterion .levels .level .level-wrapper textarea {
height: initial;
}
/* Importance needed when student views evaluation. */
.gradingform_erubric .criterion .levels .level.last {
border-right: 1px solid #ddd;
}
.gradingform_erubric .plainvalue.empty {
font-style: italic;
color: #aaa;
}
.gradingform_erubric.editor .criterion .levels .level .delete {
margin-top: 7px;
float: right;
}
.gradingform_erubric .criterion .levels .level .score {
font-style: italic;
color: #575;
font-weight: bold;
margin-top: 5px;
white-space: nowrap;
float: left;
}
.gradingform_erubric .criterion .levels .level .score .scorevalue {
padding-right: 5px;
}
/* Make invisible the buttons 'Move up' for the first criterion and 'Move down' for the last, because those buttons will make no change. */
.gradingform_erubric.editor .criterion.first .controls .moveup input,
.gradingform_erubric.editor .criterion.last .controls .movedown input {
display: none;
}
/** Enriched criteria. **/
.gradingform_erubric .enriched {
border: 1px solid #ddd;
overflow: hidden;
}
.enrichedcriterion.even {
background: #f0f0f0;
}
.gradingform_erubric .enrichedcriterion .enriched-wrapper {
padding-right: 5px;
padding-left: 2px;
}
.gradingform_erubric .enrichedcriterion .rich {
line-height: 2;
color: #575;
}
.gradingform_erubric .enrichedcriterion .rich img {
vertical-align: middle;
margin-right: 0px;
}
.gradingform_erubric .enrichedcriterion .rich .modulecontainer {
display: inline-block;
border: 0;
margin: 0;
width: 169px;
float: right;
text-align: right;
}
.gradingform_erubric .enrichedcriterion .rich select {
float: right;
margin-bottom: initial;
height: 28px;
}
.gradingform_erubric .enrichedcriterion .rich ul {
list-style-type: none;
margin: 0;
padding: 0px 0px 0px 5px;
}
.gradingform_erubric .enrichedcriterion .rich li {
line-height: 30px;
}
.gradingform_erubric .enrichedcriterion .rich span.nameoverflow {
color: #000;
max-width: 130px;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
white-space: nowrap;
text-align: left;
vertical-align: middle;
}
.gradingform_erubric .enrichedcriterion .rich span.nameoverflowedit {
color: #000;
max-width: 120px;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
white-space: nowrap;
text-align: left;
vertical-align: middle;
}
.gradingform_erubric .enrichedcriterion .coursemodule {
display: inline-block;
width: 100%;
vertical-align: top;
min-width: 185px;
}
.gradingform_erubric .enrichedcriterion .coursemodule select {
width: 150px;
}
.gradingform_erubric .enrichedcriterion select.collaborationtype {
width: 135px;
}
.gradingform_erubric .enrichedcriterion {
border: 1px solid #ddd;
overflow: hidden;
}
.gradingform_erubric .enrichedlevel {
text-align: center;
}
.gradingform_erubric .enrichedcriterion .levels table {
width: 100%;
height: 100%;
}
.gradingform_erubric .enrichedcriterion .levels,
.gradingform_erubric .enrichedcriterion .levels table,
.gradingform_erubric .enrichedcriterion .levels table tbody {
padding: 0;
margin: 0;
}
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel .checked {
padding-right: 20px;
background: transparent url([[pix:i/valid]]) no-repeat right top;
}
/* Importance needed when student views evaluation. */
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel {
vertical-align: bottom;
border-left: 1px solid #ddd;
max-width: 150px;
}
/* Top margin needed for ie in order to achieve min td height. */
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel .richvalue {
position: relative;
margin-top: 85px;
margin-bottom: 10px;
}
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel .richvalue input {
margin: 0px;
}
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel .richvalue .enrichedvalue {
padding-right: 5px;
}
/* Importance needed when student views evaluation. */
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel.last {
border-right: 1px solid #ddd;
}
.gradingform_erubric .plainvaluerich {
display: inline;
float: right;
color: #000;
}
.gradingform_erubric .plainvaluerich.empty {
font-style: italic;
color: #aaa;
}
.gradingform_erubric.editor .enrichedcriterion .coursemodule .delete input {
width: 16px;
height: 16px;
background: transparent url([[pix:i/invalid]]) no-repeat center top;
margin: 0px;
padding: 0px;
}
.gradingform_erubric.editor .enrichedcriterion .coursemodule .delete {
display: inline;
}
.gradingform_erubric .enrichedcriterion .addlevel,
.gradingform_erubric .enrichedcriterion .helptooltip {
text-align: center;
}
/** Evaluation **/
.gradeform .fitem.fitem_feditor,
.gradingform_erubric.evaluate {
overflow: auto;
width: 100%;
}
.gradingform_erubric .criterion .levels .level.currentchecked {
background: #fff0f0;
}
.gradingform_erubric .criterion .levels .level.checked {
background: #d0ffd0;
}
.gradingform_erubric.evaluate .enrichedcriterion .rich .modulecontainer {
display: inline-block;
border: 0;
margin: 0;
width: 165px;
float: right;
text-align: right;
}
/** Evaluation on enriched criteria. **/
.gradingform_erubric .criterion .levels .level.currentenenriched:hover {
background: transparent;
}
.gradingform_erubric .criterion .levels .level.currentchecked.currentenenriched:hover {
background: #fff0f0;
}
.gradingform_erubric.evaluate .criterion .levels .level:hover {
background: #30ff30;
}
/** Replace buttons with images. **/
.gradingform_erubric.editor .delete input,
.gradingform_erubric.editor .moveup input,
.gradingform_erubric.editor .movedown input,
.gradingform_erubric.editor .duplicate input {
text-indent: -1000em;
cursor: pointer;
border: none;
}
.gradingform_erubric.editor .criterion .controls .delete input {
width: 20px;
height: 16px;
background: transparent url([[pix:i/invalid]]) no-repeat center top;
}
.gradingform_erubric.editor .levels .level .delete input {
width: 20px;
height: 16px;
background: transparent url([[pix:i/invalid]]) no-repeat center top;
margin: 0px;
padding: 0px;
}
.gradingform_erubric.editor .moveup input {
width: 20px;
height: 15px;
background: transparent url([[pix:t/up]]) no-repeat center top;
margin-top: 4px;
}
.gradingform_erubric.editor .movedown input {
width: 20px;
height: 15px;
background: transparent url([[pix:t/down]]) no-repeat center top;
margin-top: 4px;
}
.gradingform_erubric.editor .duplicate input {
width: 20px;
height: 15px;
background: transparent url([[pix:t/copy]]) no-repeat center top;
margin-top: 4px;
}
.gradingform_erubric.editor .addcriterion input,
.gradingform_erubric.editor .addlevel input {
background: transparent url([[pix:t/add]]) no-repeat;
display: block;
color: #555;
font-weight: bold;
text-decoration: none;
}
.gradingform_erubric.editor .addcriterion input {
background-position: 5px 8px;
height: 30px;
line-height: 21px;
margin-top: 5px;
margin-bottom: 14px;
padding-left: 20px;
padding-right: 10px;
}
.gradingform_erubric.editor .addlevel input {
background-position: 5px 6px;
height: 25px;
line-height: 17px;
margin-bottom: 10px;
padding-left: 20px;
padding-right: 6px;
}
.gradingform_erubric .options {
margin-top: 15px;
}
.gradingform_erubric .options .optionsheading {
font-weight: bold;
font-size: 1.1em;
padding-bottom: 5px;
}
.gradingform_erubric .options .option .value {
margin-left: 5px;
font-weight: bold;
}
.gradingform_erubric .options .option input[type='checkbox'] {
margin-right: 5px;
vertical-align: top;
margin-top: 5px;
}
/** Errors & Warnings **/
/* Warning message during editing on top of rubric form */
.gradingform_erubric_editform .errormessage {
border: 1px dashed #f00;
background: #f7f0f0 url([[pix:i/risk_xss]]) no-repeat center 5px;
}
/* Missing course module from enriched criteria */
.gradingform_erubric .enrichedcriterion .rich span.missing {
color: #f00;
padding-left: 23px;
background: transparent url([[pix:i/risk_xss]]) no-repeat left;
}
/* Missing value from enriched level */
/* Missing course module from enriched criteria */
/* Missing enriched criterion (criterion type, collaboration type, operator, etc.) */
.gradingform_erubric .enrichedcriterion .levels .enrichedlevel .richvalue.error,
.gradingform_erubric .enrichedcriterion .rich .error,
.gradingform_erubric .enrichedcriterion .rich.error {
background: #fdd;
}
/* Missing course modules message on top of the rubric in edit form */
.gradingform_erubric .enrichedcriterion .missingmodule {
background: transparent url([[pix:i/risk_xss]]) no-repeat left;
border: 1px dashed #f00;
padding-left: 25px;
}
/* Message during evaluation if a criterion does not have a level checked */
/* Regrade message box on top */
/* Missing course modules message on top of the rubric in preview form */
.gradingform_erubric-error,
.gradingform_erubric-regrade,
.generalbox .missingmodule {
padding: 20px 5px 10px 5px;
margin-bottom: 10px;
background: #f7f0f0 url([[pix:i/risk_xss]]) no-repeat center 5px;
border: 1px dashed #f00;
}
.generalbox .missingmodule p {
text-align: center;
margin: 0px;
}
/* Explanation message about final grade calculations on rubric preview above the rubric */
.box.gradingform_erubric-description,
.generalbox.rubricmappingexplained {
padding: 5px;
}
/* Marking of the hole levels line of a criterion, when there are not enough number of criterion levels created */
.gradingform_erubric .criterion .levels.error {
border: 1px dashed #f00;
}
/* Missing value or definition from basic rubric criterion or levels */
.gradingform_erubric .criterion .description.error,
.gradingform_erubric .criterion .levels .level .definition.error,
.gradingform_erubric .criterion .levels .level .score.error {
background: #fdd;
}
/* Restored rubric message box */
.gradingform_erubric-restored {
padding: 10px;
background: #ffd;
border: 1px dashed #ff0;
margin-bottom: 10px;
}
/* Don't color red the text in all the form */
.felement.f.error {
color: initial;
}
/* These are needed so that the 'gradingform_erubric-error' above could be displayed correctly */
.felement.f.error br,
.felement.f.error .error {
display: none;
}
/* Special classes for elements created by erubriceditor.js. */
.gradingform_erubric.editor .hiddenelement {
display: none;
}
.gradingform_erubric.editor .pseudotablink {
background-color: transparent;
border: 0 solid;
height: 1px;
width: 1px;
color: transparent;
padding: 0;
margin: 0;
position: relative;
float: right;
}
.gradingform_erubric.editor .pseudosellink {
background-color: transparent;
border: 0 solid;
height: 1px;
width: 1px;
color: transparent;
padding: 0;
margin: 0;
position: relative;
float: right;
}
/** Special adjustments for better display of the form in Greek **/
.gradingform_erubric.hellenic .enrichedcriterion .rich .modulecontainer {
width: 165px;
}
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.hellenic.clean_theme .fitemtitle,
.gradingform_erubric_editform.hellenic.more_theme .fitemtitle {
width: 130px;
padding-top: 0px;
}
/* Importance needed to fit the form into page width. NO FOR BOOST_THEME */
.clean_theme .gradingform_erubric_editform.hellenic .felement,
.more_theme.gradingform_erubric_editform.hellenic .felement {
margin-left: 140px;
}
/** BOOST Theme **/
.gradingform_erubric_editform.hellenic.boost_theme .gradingform_erubric.hellenic .enrichedcriterion .enriched-wrapper {
width: 206px;
}
.gradingform_erubric_editform.hellenic.boost_theme .gradingform_erubric.hellenic .enrichedcriterion .rich .modulecontainer {
width: 177px;
}
.gradingform_erubric_editform.hellenic.boost_theme .gradingform_erubric.hellenic .enrichedcriterion .rich .modulecontainer .nameoverflowedit {
max-width: 130px;
}
.boost_theme .gradingform_erubric .criterion .description {
width: 180px;
font-weight: bold;
}
.gradingform_erubric_editform.hellenic .gradingform_erubric.hellenic .enrichedcriterion .rich .modulecontainer {
width: 169px;
}
/* Special adjustments for better display of the form using Boost Theme */
.gradingform_erubric_editform.boost_theme.mform > .form-group {
margin-left: -15px;
}
.boost_theme .gradingform_erubric.editor .criterion .levels .level .delete {
margin-top: 10px;
}
.boost_theme .gradingform_erubric.editor .enrichedcriterion .coursemodule .delete input {
margin-left: 5px;
vertical-align: middle;
}
.boost_theme .gradingform_erubric .enrichedcriterion .rich select {
padding-top: 1px;
}
@media (max-width: 575px) {
.gradingform_erubric_editform.boost_theme .options .option label {
display: unset;
}
}
/** Special adjustments for better display of the form using Clean Theme **/
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.clean_theme .fitemtitle {
width: 190px;
}
.gradingform_erubric_editform.clean_theme .fitem_feditor,
.gradingform_erubric_editform.clean_theme .fitem_f {
margin-right: 10px;
}
/* Special adjustments for better display of the form using More Theme */
.gradingform_erubric_editform.more_theme.mform {
overflow: auto;
}
.gradingform_erubric_editform.more_theme .felement.feditor {
max-width: 290px;
}
.gradingform_erubric.more_theme.view,
.gradingform_erubric.more_theme.editor.preview {
width: 200px;
}
.box.definition-preview .gradingform_erubric.more_theme.editor.preview {
width: 100%;
}
@media (min-width: 576px) {
.gradingform_erubric_editform.boost_theme.mform fieldset,
.gradingform_erubric_editform.boost_theme.mform > .form-group {
margin-left: unset;
}
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.boost_theme #fitem_id_erubric .felement {
margin-left: 15px;
}
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.boost_theme .fitemtitle {
margin-left: 15px;
}
.gradingform_erubric_editform.boost_theme .options .option label {
display: inline-block;
}
.gradingform_erubric_editform.more_theme .felement.feditor {
max-width: 490px;
}
.gradingform_erubric.more_theme.view {
width: 400px;
}
.gradingform_erubric.more_theme.editor.preview {
width: 400px;
}
}
@media (min-width: 992px) {
/* Importance needed to fit the editor into page width. */
.gradingform_erubric_editform.more_theme .felement.feditor {
max-width: 650px;
}
.gradingform_erubric.more_theme.view {
width: 570px;
}
.gradingform_erubric.more_theme.editor.preview {
width: 570px;
}
}
@media (min-width: 1200px) {
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.clean_theme .felement {
margin-left: 200px;
}
.gradingform_erubric_editform.more_theme .fitemtitle {
width: 190px;
}
/* Importance needed to fit the form into page width. */
.gradingform_erubric_editform.more_theme .felement {
margin-left: 205px;
}
.gradingform_erubric.more_theme.view {
width: 720px;
}
.gradingform_erubric.more_theme.editor.preview {
width: 720px;
}
}
@media (min-width: 1440px) {
.gradingform_erubric.more_theme.view {
width: 850px;
}
.gradingform_erubric.more_theme.editor.preview {
width: 850px;
}
}
@media (min-width: 2560px) {
.gradingform_erubric.more_theme.view {
width: 1050px;
}
.gradingform_erubric.more_theme.editor.preview {
width: 1050px;
}
}