From 7a3d8098668f4b72137eb19f1706f96c64862cfe Mon Sep 17 00:00:00 2001 From: Lucian Schultz Date: Wed, 4 Sep 2024 07:21:01 +0000 Subject: [PATCH] MDL-82995 feedback: fixed audio and video bug --- theme/boost/scss/moodle/modules.scss | 4 +++- theme/boost/style/moodle.css | 3 +++ theme/classic/style/moodle.css | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/theme/boost/scss/moodle/modules.scss b/theme/boost/scss/moodle/modules.scss index 81b63b67067..d6726afd7a9 100644 --- a/theme/boost/scss/moodle/modules.scss +++ b/theme/boost/scss/moodle/modules.scss @@ -1562,7 +1562,9 @@ $popout-header-height: 4rem; margin: 0 map-get($spacers, 2); } } - + .feedback-item-label { + width: 100%; + } // Feedback edit form. #feedback_edit_form { [id*=_feedback_item_].feedback_itemlist { diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index 4ca9d8a606a..c61d3116e84 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -34997,6 +34997,9 @@ img.userpicture { display: inline-block; margin: 0 0.5rem; } +.path-mod-feedback .feedback-item-label { + width: 100%; +} .path-mod-feedback #feedback_edit_form [id*=_feedback_item_].feedback_itemlist { padding: 1rem; border: 1px solid #dee2e6; diff --git a/theme/classic/style/moodle.css b/theme/classic/style/moodle.css index 8091f1f81f0..00e44f4183f 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -34997,6 +34997,9 @@ img.userpicture { display: inline-block; margin: 0 0.5rem; } +.path-mod-feedback .feedback-item-label { + width: 100%; +} .path-mod-feedback #feedback_edit_form [id*=_feedback_item_].feedback_itemlist { padding: 1rem; border: 1px solid #dee2e6;