Skip to content

Commit 6b4bf99

Browse files
author
\nrlucke
committed
update dependencies
1 parent 08833af commit 6b4bf99

12 files changed

Lines changed: 66 additions & 34 deletions

File tree

assets/static/courseware.css

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4697,6 +4697,9 @@ section#courseware.view-author .aside-section section.block.block-is-assorted:ho
46974697
.AssortBlock .ui-accordion-content:last-of-type {
46984698
border-bottom: none !important;
46994699
}
4700+
.AssortBlock .ui-accordion-content .block-content iframe {
4701+
width: 100% !important;
4702+
}
47004703
/* END accordion */
47014704
/* sidebar special */
47024705
.cw-sidebar .AssortBlock .ui-accordion-header {
@@ -11865,11 +11868,9 @@ section.TestBlock .cktoolbar {
1186511868
}
1186611869
.question_title {
1186711870
font-size: 12pt;
11868-
margin-left: 0.25em;
1186911871
}
1187011872
.question_description {
1187111873
padding: 1em 0 1em 0;
11872-
margin-left: 0.5em;
1187311874
}
1187411875
ul.exercise {
1187511876
margin: 0;
@@ -11879,9 +11880,6 @@ ul.exercise {
1187911880
ul.exercise li.exercise-item {
1188011881
border: solid thin #ccc;
1188111882
}
11882-
ul.exercise .cw-test-content {
11883-
padding: 10px;
11884-
}
1188511883
ul.exercise:not(#exercise1) {
1188611884
display: none;
1188711885
}
@@ -11925,7 +11923,7 @@ ul.exercise .exercisetitle .exercisenavbutton.exercisenavnext {
1192511923
background-image: url("../../../../../assets/images/icons/blue/arr_1right.svg");
1192611924
}
1192711925
ul.exercise .cw-test-content {
11928-
padding: 0 10px;
11926+
padding: 10px;
1192911927
/* vips 1.3 rh_exercise */
1193011928
/* vips 1.4 rh_exercise */
1193111929
}
@@ -11939,16 +11937,16 @@ ul.exercise .cw-test-content form {
1193911937
font-weight: 400;
1194011938
}
1194111939
ul.exercise .cw-test-content .answer,
11942-
ul.exercise .cw-test-content label {
11940+
ul.exercise .cw-test-content label:not(.undecorated) {
1194311941
font-size: 14px;
1194411942
font-weight: normal;
11945-
line-height: 32px;
11946-
padding-left: 7px;
11943+
margin-top: 1.5ex;
1194711944
text-transform: none;
1194811945
display: block;
1194911946
}
11950-
ul.exercise .cw-test-content .label_text {
11951-
margin-left: 7px;
11947+
ul.exercise .cw-test-content .label_text,
11948+
ul.exercise .cw-test-content .label-text {
11949+
margin-top: 1.5ex;
1195211950
}
1195311951
ul.exercise .cw-test-content select {
1195411952
margin: 0 5px;
@@ -11958,7 +11956,7 @@ ul.exercise .cw-test-content .cloze.solution {
1195811956
}
1195911957
ul.exercise .cw-test-content p img {
1196011958
margin-top: 12px;
11961-
margin-bttom: 12px;
11959+
margin-bottom: 12px;
1196211960
}
1196311961
ul.exercise .cw-test-content textarea {
1196411962
border: thin solid #ccc;

assets/static/courseware.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/static/courseware.js

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111760,7 +111760,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
111760111760
jQuery(this).removeClass('hover');
111761111761
},
111762111762
receive: function receive(event, ui) {
111763-
var sortable = jQuery(this);
111763+
var sortable = jQuery(this).not('.multiple');
111764111764
var container = sortable.closest('tbody').find('.answer_container');
111765111765

111766111766
// default answer container can have more items
@@ -111774,6 +111774,40 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
111774111774
}
111775111775
}
111776111776
});
111777+
this.$('.cloze_item').draggable({
111778+
revert: 'invalid'
111779+
});
111780+
111781+
this.$('.cloze_drop').droppable({
111782+
accept: '.cloze_item',
111783+
tolerance: 'pointer',
111784+
classes: {
111785+
'ui-droppable-hover': 'hover'
111786+
},
111787+
drop: function drop(event, ui) {
111788+
var container = jQuery(this).closest('fieldset').find('.cloze_items');
111789+
111790+
if (!jQuery(this).is(container)) {
111791+
jQuery(this).find('.cloze_item').detach().appendTo(container).css('opacity', 0).animate({ opacity: 1 });
111792+
}
111793+
111794+
ui.draggable.closest('.cloze_drop').find('input').val('');
111795+
ui.draggable.detach().css({ top: 0, left: 0 }).appendTo(this);
111796+
jQuery(this).find('input').val(ui.draggable.text());
111797+
}
111798+
});
111799+
111800+
__WEBPACK_IMPORTED_MODULE_0_jquery___default()('.vips_tabs').each(function () {
111801+
if (__WEBPACK_IMPORTED_MODULE_0_jquery___default()(this).hasClass('edit-hidden')) {
111802+
jQuery(this).tabs({
111803+
active: 1
111804+
});
111805+
} else {
111806+
jQuery(this).tabs({
111807+
active: 0
111808+
});
111809+
}
111810+
});
111777111811
} else {
111778111812
this.$('.rh_list').sortable({
111779111813
axis: 'y',

assets/static/courseware.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/vue/css/chunk-vendors.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/vue/js/chunk-vendors.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/vue/js/chunk-vendors.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/vue/js/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/vue/js/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ displayname=Courseware
33
pluginclassname=Courseware
44
pluginclassname=CoursewareObserver
55
origin=virtUOS
6-
version=4.7.5
6+
version=4.7.6
77
category=Inhalte und Aufgabenstellungen
88
icon=../../../assets/images/icons/black/group3.svg
99
homepage=https://hilfe.studip.de/help/4.0/de/Basis/Courseware

0 commit comments

Comments
 (0)