mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-77975 tool_usertours: Added tour for 4.2 grader report changes
This commit is contained in:
parent
e77452220b
commit
ead1e95032
2
admin/tool/usertours/amd/build/tour.min.js
vendored
2
admin/tool/usertours/amd/build/tour.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1132,7 +1132,7 @@ const Tour = class {
|
|||||||
if (!previousTarget.attr('tabindex')) {
|
if (!previousTarget.attr('tabindex')) {
|
||||||
previousTarget.attr('tabindex', '-1');
|
previousTarget.attr('tabindex', '-1');
|
||||||
}
|
}
|
||||||
previousTarget.focus();
|
previousTarget.first().focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1642,9 +1642,9 @@ const Tour = class {
|
|||||||
});
|
});
|
||||||
fader.attr('data-flexitour', 'step-background-fader');
|
fader.attr('data-flexitour', 'step-background-fader');
|
||||||
|
|
||||||
if (targetNode.parents('[data-region="fixed-drawer"]').length) {
|
if (targetNode.parents('[data-region="fixed-drawer"]').length || !stepConfig.zIndex) {
|
||||||
let targetClone = targetNode.clone();
|
let targetClone = targetNode.clone();
|
||||||
background.append(targetClone);
|
background.append(targetClone.first());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stepConfig.zIndex) {
|
if (stepConfig.zIndex) {
|
||||||
@ -1691,7 +1691,7 @@ const Tour = class {
|
|||||||
// This makes behavior of this function consistent across browsers
|
// This makes behavior of this function consistent across browsers
|
||||||
// WebKit always returns auto if the element is positioned.
|
// WebKit always returns auto if the element is positioned.
|
||||||
let position = elem.css("position");
|
let position = elem.css("position");
|
||||||
if (position === "absolute" || position === "relative" || position === "fixed") {
|
if (position === "absolute" || position === "fixed") {
|
||||||
// IE returns 0 when zIndex is not specified
|
// IE returns 0 when zIndex is not specified
|
||||||
// other browsers return a string
|
// other browsers return a string
|
||||||
// we ignore the case of nested elements with an explicit value of 0
|
// we ignore the case of nested elements with an explicit value of 0
|
||||||
|
@ -870,6 +870,7 @@ class manager {
|
|||||||
'40_tour_navigation_mycourse.json' => 5,
|
'40_tour_navigation_mycourse.json' => 5,
|
||||||
'40_tour_navigation_course_teacher.json' => 3,
|
'40_tour_navigation_course_teacher.json' => 3,
|
||||||
'40_tour_navigation_course_student.json' => 3,
|
'40_tour_navigation_course_student.json' => 3,
|
||||||
|
'42_tour_gradebook_grader_report.json' => 1,
|
||||||
];
|
];
|
||||||
|
|
||||||
// These are tours that we used to ship but don't ship any longer.
|
// These are tours that we used to ship but don't ship any longer.
|
||||||
|
@ -138,5 +138,13 @@ function xmldb_tool_usertours_upgrade($oldversion) {
|
|||||||
// Automatically generated Moodle v4.2.0 release upgrade line.
|
// Automatically generated Moodle v4.2.0 release upgrade line.
|
||||||
// Put any upgrade step following this.
|
// Put any upgrade step following this.
|
||||||
|
|
||||||
|
if ($oldversion < 2023053000) {
|
||||||
|
// Update shipped tours.
|
||||||
|
// Normally, we just bump the version numbers because we need to call update_shipped_tours only once.
|
||||||
|
manager::update_shipped_tours();
|
||||||
|
|
||||||
|
upgrade_plugin_savepoint(true, 2023053000, 'tool', 'usertours');
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -289,6 +289,15 @@ $string['tour_navigation_mycourses_title'] = 'Courses and categories';
|
|||||||
$string['tour_navigation_mycourses_tour_des'] = 'Course management options on the My courses page';
|
$string['tour_navigation_mycourses_tour_des'] = 'Course management options on the My courses page';
|
||||||
$string['tour_navigation_mycourses_tour_name'] = 'Course management';
|
$string['tour_navigation_mycourses_tour_name'] = 'Course management';
|
||||||
|
|
||||||
|
// 4.2 New gradebook tour.
|
||||||
|
$string['tour_gradebook_action_content'] = '<div class="text-center">@@PIXICON::tour/tour_grader_report_action_menu::tool_usertours@@</div>Sort columns and choose which ones to display. In Edit mode, use this shortcut to access frequent tasks related to viewing and editing grade items.';
|
||||||
|
$string['tour_gradebook_action_title'] = 'Quick links to actions';
|
||||||
|
$string['tour_gradebook_filter_content'] = '<div class="text-center">@@PIXICON::tour/tour_grader_report_initials::tool_usertours@@</div>Filter students by the initials of their first or last name.';
|
||||||
|
$string['tour_gradebook_filter_title'] = 'Filter by name';
|
||||||
|
$string['tour_gradebook_search_content'] = '<div class="text-center">@@PIXICON::tour/tour_grader_report_search::tool_usertours@@</div>Use the search box to quickly find specific students.';
|
||||||
|
$string['tour_gradebook_search_title'] = 'Find students easily';
|
||||||
|
$string['tour_gradebook_tour_description'] = 'Search and navigation features in Gradebook grader report';
|
||||||
|
$string['tour_gradebook_tour_name'] = 'Gradebook Grader Report';
|
||||||
$string['tour_final_step_title'] = 'End of tour';
|
$string['tour_final_step_title'] = 'End of tour';
|
||||||
$string['tour_final_step_content'] = 'This is the end of your user tour. It won\'t show again unless you reset it using the link in the footer.';
|
$string['tour_final_step_content'] = 'This is the end of your user tour. It won\'t show again unless you reset it using the link in the footer.';
|
||||||
|
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="109" height="136" viewBox="0 0 109 136" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M54.49 9.17858e-07C43.7125 1.09935e-06 33.177 3.19608 24.216 9.18396C15.2549 15.1718 8.27081 23.6826 4.14688 33.6399C0.0229583 43.5972 -1.05556 54.5538 1.04776 65.1241C3.15108 75.6944 8.34179 85.4036 15.9634 93.0238C23.5849 100.644 33.295 105.833 43.8657 107.934C54.4364 110.036 65.3928 108.955 75.3494 104.829C85.306 100.704 93.8154 93.7179 99.8017 84.7557C105.788 75.7936 108.982 65.2575 108.98 54.48C108.98 47.3247 107.571 40.2396 104.832 33.6292C102.094 27.0187 98.0797 21.0123 93.0197 15.9532C87.9597 10.8942 81.9527 6.88145 75.3417 4.14417C68.7307 1.40688 61.6453 -0.00131246 54.49 9.17858e-07Z" fill="#C4E5FF"/>
|
||||||
|
<path d="M79.0804 25H29.9004C26.8628 25 24.4004 27.4602 24.4004 30.495C24.4004 33.5298 26.8628 35.99 29.9004 35.99H79.0804C82.118 35.99 84.5804 33.5298 84.5804 30.495C84.5804 27.4602 82.118 25 79.0804 25Z" fill="white"/>
|
||||||
|
<path d="M79.0804 42.7207H29.9004C26.8628 42.7207 24.4004 45.1809 24.4004 48.2157C24.4004 51.2505 26.8628 53.7107 29.9004 53.7107H79.0804C82.118 53.7107 84.5804 51.2505 84.5804 48.2157C84.5804 45.1809 82.118 42.7207 79.0804 42.7207Z" fill="white"/>
|
||||||
|
<path d="M29.9004 61.7207H79.0804C81.5665 61.7207 83.5804 63.734 83.5804 66.2157C83.5804 68.6974 81.5665 70.7107 79.0804 70.7107H29.9004C27.4143 70.7107 25.4004 68.6974 25.4004 66.2157C25.4004 63.734 27.4143 61.7207 29.9004 61.7207Z" fill="white" stroke="#0056B2" stroke-width="2"/>
|
||||||
|
<path d="M79.0804 78.6602H29.9004C26.8628 78.6602 24.4004 81.1203 24.4004 84.1552C24.4004 87.19 26.8628 89.6501 29.9004 89.6501H79.0804C82.118 89.6501 84.5804 87.19 84.5804 84.1552C84.5804 81.1203 82.118 78.6602 79.0804 78.6602Z" fill="white"/>
|
||||||
|
<path d="M95.53 95.58C95.1703 95.1947 94.7329 94.8904 94.2468 94.687C93.7606 94.4836 93.2368 94.3857 92.71 94.4C92.1897 94.3942 91.6737 94.4949 91.1939 94.6962C90.714 94.8974 90.2804 95.1949 89.9199 95.5701C89.5454 95.9285 89.249 96.3603 89.0494 96.8387C88.8498 97.3172 88.7512 97.8317 88.76 98.35V99.48H87.6299V95.08C87.6384 94.1571 87.3275 93.2598 86.7499 92.54C86.2013 91.7983 85.3952 91.2882 84.4899 91.11C84.222 91.0668 83.9513 91.0434 83.6799 91.04C82.6277 91.04 81.6177 91.4545 80.869 92.1938C80.1203 92.9332 79.6931 93.9378 79.6799 94.99V99.49H78.59V95.2001C78.6033 94.045 78.1943 92.9248 77.4399 92.05C77.08 91.613 76.6362 91.2524 76.1347 90.9896C75.6332 90.7268 75.0842 90.5672 74.52 90.52C74.3702 90.5076 74.2197 90.5076 74.0699 90.52C73.4768 90.5187 72.8893 90.6344 72.3409 90.8605C71.7926 91.0865 71.2943 91.4185 70.8745 91.8374C70.4546 92.2563 70.1215 92.7539 69.8942 93.3018C69.667 93.8496 69.5499 94.4369 69.5499 95.03V99.53H68.4199V85.11V69.3101C68.4322 68.4366 68.1583 67.5831 67.64 66.88C67.5257 66.7228 67.4021 66.5726 67.27 66.4301C66.5993 65.7463 65.6964 65.3395 64.7399 65.29H64.1899C63.2331 65.3375 62.3294 65.7447 61.6599 66.4301C61.5249 66.5763 61.3981 66.7299 61.28 66.89C60.7637 67.5904 60.4898 68.44 60.4999 69.3101V95.96C60.5044 96.0266 60.5044 96.0934 60.4999 96.16V111.25L59.3699 110.25V104.25C59.3822 103.719 59.2887 103.191 59.0947 102.696C58.9007 102.202 58.6101 101.751 58.2399 101.37C57.8782 100.988 57.4402 100.687 56.9544 100.485C56.4686 100.283 55.9457 100.186 55.4199 100.2C54.3591 100.2 53.3416 100.621 52.5915 101.372C51.8413 102.122 51.4199 103.139 51.4199 104.2V112.08C51.4193 112.62 51.5281 113.154 51.7394 113.651C51.9508 114.147 52.2606 114.596 52.65 114.97L63.65 125.38C64.1128 125.85 64.4741 126.411 64.7115 127.027C64.9489 127.643 65.0573 128.301 65.03 128.96C65.027 129.257 65.0849 129.551 65.2001 129.824C65.3154 130.098 65.4855 130.345 65.7 130.55C65.9041 130.765 66.151 130.935 66.4249 131.049C66.6988 131.162 66.9935 131.217 67.2899 131.21H89.8799C90.4752 131.202 91.0441 130.963 91.4659 130.543C91.8878 130.123 92.1296 129.555 92.14 128.96V128.08C92.1312 127.162 92.2489 126.246 92.4899 125.36L96.28 110.02C96.5254 109.138 96.6432 108.225 96.6299 107.31V98.65C96.6725 98.0897 96.5965 97.5268 96.407 96.9978C96.2175 96.4688 95.9187 95.9857 95.53 95.58Z" fill="white"/>
|
||||||
|
<path d="M101.191 98.4404C101.205 97.3255 100.993 96.2191 100.569 95.188C100.144 94.1569 99.5158 93.2224 98.7209 92.4404C97.9489 91.6297 97.017 90.988 95.9842 90.5559C94.9514 90.1239 93.8402 89.9109 92.7209 89.9304C92.0203 89.9248 91.3218 90.0054 90.6409 90.1704C89.8742 89.0485 88.8441 88.1317 87.6409 87.5004C86.4285 86.876 85.0846 86.5503 83.7209 86.5504C82.1912 86.5525 80.691 86.9708 79.3809 87.7604C77.8766 86.5965 76.0227 85.9761 74.1209 86.0004C73.7464 85.9982 73.3722 86.0216 73.0009 86.0704V69.3104C73.0109 68.196 72.7975 67.0908 72.3733 66.0603C71.9491 65.0298 71.3226 64.0948 70.5309 63.3104C69.4676 62.2095 68.1162 61.4298 66.6309 61.0604H66.4509C66.2563 61.0132 66.0593 60.9765 65.8609 60.9504H65.5109C65.2119 60.9183 64.9115 60.9015 64.6109 60.9004H64.4609C64.1569 60.9018 63.8532 60.9186 63.5509 60.9504H63.2009C63.0009 60.9504 62.8109 61.0104 62.6109 61.0604H62.4409C60.9575 61.4275 59.6087 62.2077 58.5509 63.3104C57.756 64.0929 57.1268 65.0274 56.7007 66.0582C56.2746 67.089 56.0604 68.1951 56.0709 69.3104V95.6204C55.8878 95.6074 55.704 95.6074 55.5209 95.6204C53.2797 95.623 51.1309 96.5138 49.5452 98.0977C47.9595 99.6815 47.0662 101.829 47.0609 104.07V111.96C47.0507 113.117 47.285 114.263 47.7486 115.323C48.2122 116.383 48.8945 117.333 49.7509 118.11L60.6309 128.52C60.5941 130.372 61.279 132.165 62.5408 133.52C63.1578 134.192 63.9122 134.722 64.7525 135.076C65.5929 135.43 66.4995 135.598 67.4108 135.57H90.0109C90.9003 135.572 91.7813 135.397 92.6032 135.058C93.4252 134.718 94.172 134.219 94.8009 133.59C95.4298 132.962 95.9284 132.215 96.2682 131.393C96.608 130.571 96.7822 129.69 96.7809 128.8C96.7568 127.962 96.8272 127.123 96.9909 126.3L100.821 110.95C101.11 109.704 101.261 108.43 101.271 107.15L101.191 98.4404ZM96.3309 109.82L92.5309 125.14C92.2899 126.027 92.1721 126.942 92.1809 127.86V128.74C92.1705 129.336 91.9288 129.903 91.5069 130.323C91.085 130.744 90.5161 130.983 89.9209 130.99H67.3309C67.0344 130.998 66.7397 130.943 66.4658 130.829C66.192 130.715 65.945 130.545 65.7409 130.33C65.5264 130.125 65.3563 129.878 65.241 129.605C65.1258 129.331 65.0679 129.037 65.0709 128.74C65.0982 128.081 64.9898 127.423 64.7525 126.807C64.5151 126.191 64.1537 125.631 63.6909 125.16L52.6909 114.75C52.3015 114.377 51.9917 113.928 51.7803 113.431C51.569 112.934 51.4603 112.4 51.4609 111.86V103.98C51.4609 102.919 51.8823 101.902 52.6325 101.152C53.3826 100.402 54.4 99.9803 55.4609 99.9803C55.9867 99.9667 56.5095 100.064 56.9953 100.265C57.4812 100.467 57.9192 100.769 58.2809 101.15C58.651 101.531 58.9416 101.982 59.1356 102.477C59.3296 102.971 59.4231 103.499 59.4108 104.03V110.03L60.5408 111.03V96.1404C60.5453 96.0738 60.5453 96.007 60.5408 95.9404V69.2904C60.5307 68.4204 60.8046 67.5707 61.3209 66.8704C61.439 66.7102 61.5659 66.5567 61.7009 66.4104C62.3703 65.7251 63.274 65.3179 64.2308 65.2704H64.7609C65.7173 65.3198 66.6202 65.7267 67.2908 66.4104C67.423 66.5529 67.5466 66.7031 67.6608 66.8604C68.1792 67.5635 68.4532 68.417 68.4409 69.2904V85.0903V99.5104H69.5709V95.0104C69.5709 94.4173 69.6878 93.8301 69.9151 93.2822C70.1424 92.7344 70.4755 92.2367 70.8953 91.8177C71.3152 91.3988 71.8136 91.0669 72.3619 90.8408C72.9102 90.6148 73.4978 90.4991 74.0909 90.5004C74.2406 90.4879 74.3911 90.4879 74.5408 90.5004C75.1051 90.5475 75.6541 90.7072 76.1557 90.97C76.6572 91.2327 77.101 91.5933 77.4609 92.0304C78.2152 92.9052 78.6241 94.0254 78.6109 95.1804V99.4703H79.7409V94.9703C79.754 93.9182 80.1812 92.9136 80.9299 92.1742C81.6787 91.4348 82.6886 91.0203 83.7409 91.0204C84.0122 91.0238 84.2829 91.0471 84.5509 91.0903C85.4561 91.2685 86.2622 91.7786 86.8109 92.5204C87.3884 93.2402 87.6993 94.1376 87.6909 95.0604V99.4603H88.8209V98.3303C88.8121 97.812 88.9107 97.2975 89.1103 96.8191C89.3099 96.3407 89.6063 95.9088 89.9809 95.5504C90.3414 95.1752 90.7749 94.8779 91.2548 94.6766C91.7346 94.4754 92.2506 94.3745 92.7709 94.3804C93.2977 94.3661 93.8215 94.4639 94.3077 94.6674C94.7939 94.8708 95.2313 95.1752 95.5909 95.5604C95.9616 95.9394 96.2533 96.3883 96.449 96.881C96.6447 97.3737 96.7405 97.9004 96.7309 98.4304V107.14C96.7218 108.049 96.5838 108.951 96.3209 109.82H96.3309Z" fill="#0056B2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="112" height="147" viewBox="0 0 112 147" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M54.48 108.96C84.5685 108.96 108.96 84.5685 108.96 54.48C108.96 24.3915 84.5685 0 54.48 0C24.3915 0 0 24.3915 0 54.48C0 84.5685 24.3915 108.96 54.48 108.96Z" fill="#C4E5FF"/>
|
||||||
|
<rect x="23" y="59" width="28" height="28" rx="8" fill="white"/>
|
||||||
|
<rect x="61" y="60" width="26" height="26" rx="7" fill="white" stroke="#0056B2" stroke-width="2"/>
|
||||||
|
<rect x="23" y="24" width="28" height="28" rx="8" fill="white"/>
|
||||||
|
<rect x="60" y="24" width="28" height="28" rx="8" fill="white"/>
|
||||||
|
<path d="M105.96 106.41C105.598 106.027 105.161 105.724 104.675 105.52C104.189 105.317 103.666 105.218 103.14 105.23C102.62 105.226 102.104 105.328 101.625 105.529C101.145 105.73 100.712 106.027 100.35 106.4C99.9751 106.758 99.6786 107.19 99.479 107.669C99.2794 108.147 99.1809 108.662 99.1896 109.18V110.36H98.0596V105.96C98.0663 105.034 97.7557 104.134 97.1796 103.41C96.6276 102.672 95.823 102.163 94.9196 101.98C94.6515 101.939 94.3808 101.919 94.1096 101.92C93.0591 101.92 92.0506 102.333 91.3021 103.07C90.5537 103.807 90.1254 104.809 90.1096 105.86V110.36H88.9796V106.07C88.9929 104.915 88.584 103.795 87.8296 102.92C87.4702 102.481 87.0268 102.119 86.5253 101.855C86.0238 101.59 85.4744 101.429 84.9096 101.38C84.7565 101.368 84.6027 101.368 84.4496 101.38C83.2543 101.383 82.1087 101.859 81.2634 102.704C80.4182 103.549 79.9422 104.695 79.9396 105.89V110.36H78.8196V95.9199V80.1199C78.8319 79.2464 78.5579 78.393 78.0396 77.6899C77.9269 77.5286 77.7997 77.378 77.6596 77.2399C76.9924 76.5556 76.0936 76.1454 75.1395 76.0898H74.5996C73.6463 76.1482 72.7484 76.558 72.0796 77.2399C71.9419 77.3802 71.8149 77.5306 71.6996 77.6899C71.1812 78.393 70.9073 79.2464 70.9196 80.1199V106.76C70.9241 106.826 70.9241 106.893 70.9196 106.96V122.06L69.7896 121.01V114.95C69.8005 114.421 69.7063 113.894 69.5123 113.402C69.3184 112.909 69.0285 112.46 68.6596 112.08C68.293 111.708 67.8563 111.413 67.3748 111.212C66.8932 111.01 66.3766 110.907 65.8546 110.907C65.3327 110.907 64.8159 111.01 64.3344 111.212C63.8528 111.413 63.4161 111.708 63.0496 112.08C62.6731 112.437 62.3753 112.868 62.1755 113.347C61.9758 113.826 61.8784 114.341 61.8895 114.86V122.74C61.8902 123.28 62.0005 123.815 62.2136 124.312C62.4268 124.809 62.7383 125.257 63.1295 125.63L74.1295 136.04C74.5903 136.514 74.9502 137.076 75.1874 137.693C75.4246 138.311 75.5341 138.969 75.5095 139.63C75.5067 139.925 75.5648 140.218 75.6801 140.49C75.7953 140.761 75.9654 141.007 76.1796 141.21C76.3847 141.424 76.6317 141.594 76.9052 141.71C77.1786 141.825 77.4728 141.883 77.7695 141.88H100.36C100.656 141.885 100.95 141.829 101.223 141.715C101.497 141.602 101.744 141.433 101.95 141.22C102.162 141.013 102.331 140.766 102.446 140.493C102.561 140.22 102.62 139.926 102.62 139.63V138.75C102.605 137.834 102.723 136.922 102.97 136.04L106.76 120.69C107.001 119.807 107.119 118.895 107.11 117.98V109.32C107.123 108.782 107.029 108.248 106.831 107.748C106.633 107.248 106.337 106.793 105.96 106.41Z" fill="white"/>
|
||||||
|
<path d="M111.61 109.27C111.62 108.155 111.406 107.049 110.98 106.018C110.554 104.987 109.925 104.052 109.13 103.27C108.359 102.458 107.427 101.816 106.394 101.384C105.361 100.952 104.249 100.739 103.13 100.76C102.429 100.757 101.73 100.841 101.05 101.01C95.3934 100.233 89.8399 98.8347 84.49 96.8399C84.1159 96.8394 83.742 96.8594 83.37 96.8999V80.1099C83.3828 78.9942 83.1695 77.8875 82.7433 76.8564C82.3171 75.8252 81.6867 74.891 80.8899 74.1099C79.8327 73.0044 78.4841 72.2208 77 71.8499H76.83L76.24 71.7399H75.8899C75.5901 71.7247 75.2898 71.7247 74.99 71.7399H74.83C74.53 71.7399 74.2299 71.7399 73.93 71.7399H73.58L72.99 71.8499H72.82C71.3359 72.2208 69.9872 73.0044 68.93 74.1099C68.1332 74.891 67.5028 75.8252 67.0766 76.8564C66.6504 77.8875 66.4372 78.9942 66.45 80.1099V106.43C66.2669 106.416 66.083 106.416 65.8999 106.43C63.6595 106.435 61.5123 107.327 59.9271 108.91C58.342 110.493 57.4479 112.64 57.44 114.88V122.77C57.4271 123.928 57.6592 125.075 58.1211 126.137C58.583 127.198 59.2642 128.15 60.12 128.93L70.98 139.36C70.9421 141.212 71.6272 143.005 72.8899 144.36C73.508 145.03 74.2624 145.561 75.1023 145.916C75.9422 146.272 76.8483 146.443 77.7599 146.42H100.35C101.244 146.433 102.132 146.262 102.958 145.918C103.783 145.574 104.529 145.064 105.15 144.42C105.796 143.803 106.307 143.059 106.651 142.234C106.996 141.41 107.165 140.523 107.15 139.63C107.125 138.791 107.195 137.953 107.36 137.13L111.2 121.78C111.489 120.53 111.64 119.253 111.65 117.97L111.61 109.27ZM106.75 120.65L102.96 136C102.713 136.882 102.595 137.794 102.61 138.71V139.59C102.611 139.886 102.552 140.18 102.437 140.453C102.321 140.726 102.153 140.973 101.94 141.18C101.734 141.393 101.487 141.562 101.214 141.675C100.94 141.789 100.646 141.845 100.35 141.84H77.7599C77.4632 141.843 77.169 141.785 76.8955 141.67C76.622 141.554 76.3751 141.384 76.1699 141.17C75.9558 140.967 75.7857 140.721 75.6704 140.45C75.5552 140.178 75.4972 139.885 75.5 139.59C75.5246 138.929 75.4149 138.271 75.1778 137.654C74.9406 137.037 74.5808 136.474 74.12 136L63.12 125.59C62.7288 125.217 62.4171 124.769 62.204 124.272C61.9909 123.775 61.8806 123.24 61.8799 122.7V114.82C61.8687 114.301 61.9663 113.786 62.166 113.307C62.3658 112.828 62.6634 112.397 63.0399 112.04C63.4065 111.668 63.8432 111.373 64.3247 111.172C64.8063 110.97 65.323 110.867 65.845 110.867C66.3669 110.867 66.8836 110.97 67.3651 111.172C67.8467 111.373 68.2834 111.668 68.6499 112.04C69.0189 112.42 69.3087 112.869 69.5027 113.362C69.6967 113.854 69.7909 114.381 69.7799 114.91V120.97L70.9099 122.02V106.92C70.9144 106.853 70.9144 106.786 70.9099 106.72V80.1199C70.8976 79.2465 71.1716 78.393 71.69 77.6899C71.8052 77.5307 71.9323 77.3802 72.07 77.2399C72.7388 76.558 73.6366 76.1483 74.59 76.0899H75.1299C76.084 76.1454 76.9828 76.5556 77.6499 77.2399C77.79 77.378 77.9172 77.5287 78.0299 77.6899C78.5483 78.393 78.8223 79.2465 78.81 80.1199V95.9199V110.36H79.93V105.85C79.9326 104.655 80.4086 103.509 81.2538 102.664C82.099 101.819 83.2446 101.343 84.44 101.34C84.593 101.328 84.7468 101.328 84.8999 101.34C85.4648 101.389 86.0142 101.55 86.5156 101.815C87.0171 102.079 87.4606 102.441 87.82 102.88C88.5743 103.755 88.9833 104.875 88.97 106.03V110.36H90.1V105.85C90.1158 104.799 90.5441 103.797 91.2925 103.06C92.0409 102.323 93.0494 101.91 94.1 101.91C94.3711 101.909 94.6419 101.929 94.9099 101.97C95.8134 102.153 96.618 102.662 97.1699 103.4C97.7461 104.124 98.0566 105.024 98.0499 105.95V110.36H99.18V109.23C99.1712 108.712 99.2698 108.197 99.4694 107.719C99.669 107.24 99.9654 106.808 100.34 106.45C100.702 106.077 101.136 105.78 101.615 105.579C102.095 105.378 102.61 105.276 103.13 105.28C103.656 105.268 104.18 105.367 104.665 105.57C105.151 105.774 105.589 106.077 105.95 106.46C106.319 106.84 106.609 107.289 106.803 107.782C106.997 108.274 107.091 108.801 107.08 109.33V117.99C107.092 118.887 106.981 119.782 106.75 120.65Z" fill="#0056B2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="111" height="116" viewBox="0 0 111 116" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M54.48 108.96C84.5685 108.96 108.96 84.5685 108.96 54.48C108.96 24.3915 84.5685 0 54.48 0C24.3915 0 0 24.3915 0 54.48C0 84.5685 24.3915 108.96 54.48 108.96Z" fill="#C4E5FF"/>
|
||||||
|
<path d="M28.4492 54.4801C28.4492 57.5425 29.0524 60.575 30.2243 63.4043C31.3962 66.2336 33.114 68.8044 35.2795 70.9698C37.4449 73.1353 40.0157 74.8531 42.845 76.025C45.6743 77.197 48.7067 77.8001 51.7692 77.8001H103.719C107.17 70.5102 108.959 62.5454 108.959 54.4801C108.959 46.4148 107.17 38.4501 103.719 31.1602H51.7692C45.5843 31.1602 39.6528 33.6171 35.2795 37.9904C30.9061 42.3638 28.4492 48.2953 28.4492 54.4801Z" fill="white"/>
|
||||||
|
<path d="M104.22 76.6996H51.7696C48.8126 76.7623 45.8729 76.2341 43.1227 75.1459C40.3726 74.0577 37.8673 72.4313 35.7539 70.3622C33.6405 68.2932 31.9614 65.823 30.8151 63.0966C29.6687 60.3701 29.0782 57.4422 29.0782 54.4846C29.0782 51.5269 29.6687 48.5991 30.8151 45.8726C31.9614 43.1462 33.6405 40.6759 35.7539 38.6069C37.8673 36.5378 40.3726 34.9115 43.1227 33.8233C45.8729 32.7351 48.8126 32.2069 51.7696 32.2696H104.22C103.89 31.5196 103.54 30.7896 103.22 30.0596H51.7696C45.293 30.0596 39.0817 32.6324 34.5021 37.212C29.9224 41.7917 27.3496 48.003 27.3496 54.4796C27.3496 60.9561 29.9224 67.1675 34.5021 71.7471C39.0817 76.3268 45.293 78.8996 51.7696 78.8996H103.18C103.55 78.1796 103.89 77.4396 104.22 76.6996Z" fill="#0056B2"/>
|
||||||
|
<path d="M62.8206 64.33C62.79 64.2148 62.7532 64.1013 62.7106 63.99V63.91L62.5906 63.61C62.5433 63.5004 62.4899 63.3935 62.4306 63.2899C62.3832 63.1998 62.3297 63.113 62.2706 63.03C62.1508 62.8529 62.0171 62.6857 61.8706 62.53L61.6506 62.32C61.4915 62.1823 61.3209 62.0585 61.1406 61.95L60.8606 61.8C60.0115 61.3945 59.1092 61.1117 58.1806 60.96C56.5806 60.62 54.4106 59.07 54.1806 58.09C54.1445 57.6728 54.2031 57.2529 54.352 56.8616C54.5009 56.4703 54.7363 56.1176 55.0406 55.83L55.2606 55.53L55.3206 55.45C56.0082 54.5454 56.4586 53.4831 56.6306 52.36C56.6258 52.2633 56.6258 52.1666 56.6306 52.07C56.9499 50.4308 56.9089 48.7418 56.5106 47.12C56.1927 46.0624 55.5676 45.1231 54.7147 44.4216C53.8618 43.7201 52.8196 43.2879 51.7206 43.18H51.5506C51.3008 43.1653 51.0504 43.1653 50.8006 43.18C50.5508 43.1655 50.3004 43.1655 50.0506 43.18H49.9106C48.8133 43.2897 47.7733 43.7228 46.9224 44.4242C46.0714 45.1256 45.4478 46.0638 45.1306 47.12C44.729 48.741 44.6846 50.4301 45.0006 52.07C45.0124 52.1674 45.0291 52.2642 45.0506 52.36C45.2205 53.482 45.6673 54.544 46.3506 55.45L46.4106 55.53L46.6306 55.83C46.9349 56.1176 47.1703 56.4703 47.3192 56.8616C47.4681 57.2529 47.5267 57.6728 47.4906 58.09C47.2606 59.09 45.0806 60.62 43.4906 60.96C42.5648 61.1101 41.6656 61.393 40.8206 61.8L40.5506 61.95C40.3703 62.0585 40.1997 62.1823 40.0406 62.32L39.8306 62.53C39.6871 62.6882 39.5534 62.8552 39.4306 63.03L39.2806 63.2899L39.1206 63.61L39.0006 63.91V63.99C39.0006 64.1 38.9306 64.21 38.8906 64.33C38.8906 64.4 38.8906 64.47 38.8906 64.53C40.2916 66.4281 42.1185 67.9707 44.2244 69.0338C46.3304 70.0969 48.6566 70.6507 51.0156 70.6507C53.3747 70.6507 55.7008 70.0969 57.8068 69.0338C59.9127 67.9707 61.7397 66.4281 63.1406 64.53C63.1275 64.4625 63.1108 64.3957 63.0906 64.33H62.8206Z" fill="#85CAFF"/>
|
||||||
|
<path d="M95.6995 42.9102H70.7195C67.5273 42.9102 64.9395 45.4979 64.9395 48.6902V48.7002C64.9395 51.8924 67.5273 54.4802 70.7195 54.4802H95.6995C98.8917 54.4802 101.479 51.8924 101.479 48.7002V48.6902C101.479 45.4979 98.8917 42.9102 95.6995 42.9102Z" fill="#85CAFF"/>
|
||||||
|
<path d="M105.47 79.29C105.143 78.9471 104.748 78.6758 104.311 78.4933C103.874 78.3108 103.404 78.2211 102.93 78.23C102.464 78.2294 102.003 78.322 101.574 78.5023C101.144 78.6826 100.755 78.9471 100.43 79.2801C100.102 79.6068 99.8437 79.997 99.6718 80.4269C99.4998 80.8568 99.4175 81.3172 99.4298 81.7801V82.7801H98.4298V78.7801C98.432 77.9479 98.1498 77.1399 97.6298 76.4901C97.1412 75.8342 96.4301 75.3791 95.6298 75.2101C95.3881 75.1741 95.1442 75.1541 94.8998 75.1501C93.9616 75.1553 93.0632 75.5296 92.3989 76.1921C91.7345 76.8545 91.3577 77.7519 91.3498 78.6901V82.7401H90.3498V78.8901C90.3755 77.8559 90.0195 76.8485 89.3498 76.0601C89.0312 75.665 88.6355 75.3389 88.1868 75.1016C87.7381 74.8644 87.2457 74.7209 86.7398 74.6801C86.6001 74.6679 86.4596 74.6679 86.3198 74.6801C85.7903 74.68 85.266 74.7851 84.7774 74.9893C84.2888 75.1934 83.8457 75.4925 83.4736 75.8693C83.1015 76.246 82.8079 76.6929 82.6098 77.184C82.4117 77.675 82.3132 78.2006 82.3198 78.73V82.73H81.3198V69.73V55.67C81.3285 54.8821 81.0791 54.113 80.6098 53.48C80.5078 53.3375 80.3941 53.2037 80.2698 53.0801C79.6638 52.476 78.8545 52.1195 77.9998 52.0801H77.5298C76.672 52.119 75.8594 52.4754 75.2498 53.0801C75.1298 53.2101 75.0198 53.34 74.9098 53.48C74.4479 54.1162 74.2025 54.8839 74.2098 55.67V79.61C74.2098 79.68 74.2098 79.74 74.2098 79.79V93.3501L73.2098 92.4101V86.9601C73.223 86.4867 73.1413 86.0153 72.9695 85.574C72.7978 85.1326 72.5395 84.7301 72.2098 84.3901C71.886 84.0431 71.4921 83.7691 71.0541 83.5863C70.6161 83.4035 70.1442 83.3162 69.6698 83.3301C69.207 83.3183 68.7467 83.401 68.3169 83.5729C67.8871 83.7448 67.4968 84.0024 67.1698 84.3301C66.8392 84.6549 66.5797 85.0448 66.4076 85.4752C66.2355 85.9055 66.1545 86.3669 66.1698 86.8301V93.9101C66.1689 94.3955 66.2679 94.8759 66.4606 95.3215C66.6532 95.767 66.9355 96.1682 67.2898 96.5001L77.1298 105.86C77.5447 106.284 77.8687 106.788 78.0819 107.342C78.2951 107.896 78.3931 108.487 78.3698 109.08C78.3675 109.345 78.4195 109.608 78.5227 109.852C78.6259 110.096 78.778 110.317 78.9698 110.5C79.1525 110.695 79.3744 110.849 79.6208 110.953C79.8672 111.056 80.1326 111.106 80.3998 111.1H100.7C100.967 111.105 101.232 111.054 101.478 110.951C101.724 110.848 101.946 110.694 102.13 110.5C102.319 110.315 102.469 110.094 102.572 109.85C102.675 109.606 102.729 109.345 102.73 109.08V108.29C102.722 107.466 102.827 106.646 103.04 105.85L106.18 92.0701C106.401 91.2758 106.508 90.4544 106.5 89.6301V81.8701C106.508 81.3932 106.421 80.9194 106.244 80.4764C106.068 80.0334 105.804 79.6301 105.47 79.29Z" fill="white"/>
|
||||||
|
<path d="M110.549 81.8604C110.562 80.854 110.373 79.8554 109.991 78.9241C109.61 77.9928 109.045 77.148 108.329 76.4404C107.632 75.7142 106.793 75.1396 105.863 74.7525C104.934 74.3654 103.935 74.174 102.929 74.1904C102.299 74.1879 101.671 74.2618 101.059 74.4104C99.9543 72.8332 98.2935 71.7326 96.4104 71.33C94.5274 70.9274 92.5618 71.2527 90.9089 72.2404C89.5552 71.196 87.8885 70.6393 86.1789 70.6604C85.8447 70.6606 85.5107 70.6806 85.1789 70.7204V55.6604C85.1906 54.6535 84.9992 53.6545 84.616 52.7232C84.2329 51.7919 83.6659 50.9475 82.9489 50.2404C81.9911 49.261 80.779 48.5683 79.4489 48.2404H79.2889C79.1089 48.2404 78.9389 48.1704 78.7589 48.1504H78.4489C78.1789 48.1504 77.9089 48.1504 77.6289 48.1504H77.4989C77.2189 48.1504 76.9489 48.1504 76.6789 48.1504H76.3689C76.1889 48.1504 76.0089 48.2104 75.8389 48.2404H75.6789C74.3488 48.5683 73.1367 49.261 72.1789 50.2404C71.4619 50.9475 70.8949 51.7919 70.5117 52.7232C70.1285 53.6545 69.9372 54.6535 69.9489 55.6604V79.3104C69.7825 79.2968 69.6153 79.2968 69.4489 79.3104C68.4483 79.2974 67.4556 79.4895 66.5321 79.8747C65.6085 80.2599 64.7737 80.8302 64.0789 81.5504C63.3575 82.2416 62.7869 83.0746 62.4031 83.9971C62.0193 84.9195 61.8306 85.9115 61.8489 86.9104V94.0004C61.8422 95.0402 62.0542 96.0699 62.4711 97.0226C62.888 97.9753 63.5005 98.8297 64.2688 99.5304L74.0489 108.88C74.0084 110.551 74.6261 112.171 75.7688 113.39C76.3244 113.994 77.0027 114.471 77.7583 114.79C78.5138 115.109 79.329 115.263 80.1489 115.24H100.449C101.26 115.254 102.065 115.104 102.816 114.797C103.567 114.491 104.248 114.036 104.818 113.46C105.388 112.883 105.836 112.197 106.133 111.442C106.431 110.688 106.572 109.881 106.549 109.07C106.525 108.319 106.589 107.567 106.739 106.83L110.149 93.0704C110.411 91.9523 110.548 90.8087 110.559 89.6604L110.549 81.8604ZM106.179 92.0704L102.769 105.86C102.556 106.656 102.451 107.477 102.459 108.3V109.07C102.458 109.335 102.404 109.597 102.301 109.841C102.198 110.084 102.048 110.305 101.859 110.49C101.675 110.684 101.453 110.838 101.207 110.941C100.961 111.044 100.696 111.095 100.429 111.09H80.1289C79.8617 111.097 79.5963 111.046 79.3499 110.943C79.1035 110.84 78.8817 110.685 78.6989 110.49C78.5072 110.307 78.355 110.087 78.2518 109.843C78.1486 109.598 78.0965 109.336 78.0989 109.07C78.1221 108.478 78.0242 107.886 77.811 107.332C77.5977 106.779 77.2738 106.275 76.8589 105.85L67.0188 96.4904C66.6646 96.1585 66.3824 95.7573 66.1897 95.3118C65.997 94.8662 65.898 94.3858 65.8989 93.9004V86.8204C65.8835 86.3572 65.9645 85.8958 66.1366 85.4655C66.3088 85.0351 66.5683 84.6452 66.8989 84.3204C67.2259 83.9927 67.6162 83.7351 68.046 83.5632C68.4758 83.3913 68.9361 83.3086 69.3989 83.3204C69.8732 83.3065 70.3452 83.3938 70.7831 83.5766C71.2211 83.7594 71.6151 84.0334 71.9389 84.3804C72.2686 84.7204 72.5269 85.123 72.6986 85.5643C72.8703 86.0057 72.9521 86.477 72.9389 86.9504V92.4004L73.9389 93.3404V79.7903C73.9389 79.7403 73.9389 79.6804 73.9389 79.6104V55.6703C73.9316 54.8842 74.177 54.1165 74.6389 53.4803C74.7489 53.3403 74.8589 53.2104 74.9789 53.0804C75.5885 52.4757 76.4011 52.1193 77.2589 52.0804H77.7289C78.5836 52.1198 79.3929 52.4763 79.9989 53.0804C80.1232 53.204 80.2369 53.3378 80.3389 53.4803C80.8082 54.1133 81.0576 54.8824 81.0489 55.6703V69.8604V82.8604H82.0489V78.8604C82.0423 78.3309 82.1409 77.8054 82.3389 77.3143C82.537 76.8232 82.8305 76.3763 83.2026 75.9996C83.5747 75.6228 84.0179 75.3237 84.5065 75.1196C84.9951 74.9154 85.5194 74.8103 86.0489 74.8104C86.1886 74.7982 86.3291 74.7982 86.4689 74.8104C86.9748 74.8512 87.4671 74.9947 87.9158 75.2319C88.3645 75.4692 88.7603 75.7953 89.0789 76.1904C89.7486 76.9788 90.1046 77.9862 90.0789 79.0204V82.8704H91.0789V78.8204C91.0868 77.8822 91.4636 76.9849 92.1279 76.3224C92.7923 75.6599 93.6907 75.2856 94.6289 75.2804C94.8733 75.2844 95.1171 75.3045 95.3589 75.3404C96.1591 75.5094 96.8702 75.9645 97.3589 76.6204C97.8788 77.2702 98.1611 78.0782 98.1589 78.9104V82.9104H99.1589V81.9104C99.1465 81.4476 99.2289 80.9871 99.4009 80.5572C99.5728 80.1273 99.8307 79.7371 100.159 79.4104C100.484 79.0774 100.873 78.813 101.303 78.6326C101.732 78.4523 102.193 78.3597 102.659 78.3604C103.133 78.3515 103.603 78.4411 104.04 78.6236C104.477 78.8061 104.872 79.0774 105.199 79.4203C105.528 79.7629 105.786 80.1673 105.957 80.6102C106.129 81.053 106.211 81.5256 106.199 82.0004V89.7804C106.292 90.5413 106.286 91.3112 106.179 92.0704Z" fill="#0056B2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 10 KiB |
@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"name": "tour_gradebook_tour_name,tool_usertours",
|
||||||
|
"description": "tour_gradebook_tour_description,tool_usertours",
|
||||||
|
"pathmatch": "\/grade\/report\/grader\/index.php%",
|
||||||
|
"enabled": "1",
|
||||||
|
"sortorder": "4",
|
||||||
|
"endtourlabel": "",
|
||||||
|
"configdata": "{\"placement\":\"bottom\",\"orphan\":\"0\",\"backdrop\":\"1\",\"reflex\":\"0\",\"filtervalues\":{\"accessdate\":{\"filter_accessdate\":\"tool_usertours_accountcreation\",\"filter_accessdate_range\":0,\"filter_accessdate_enabled\":\"0\"},\"category\":[],\"course\":[],\"courseformat\":[],\"role\":[],\"theme\":[],\"cssselector\":[]},\"majorupdatetime\":1683276000}",
|
||||||
|
"displaystepnumbers": true,
|
||||||
|
"version": "2023042401",
|
||||||
|
"steps": [
|
||||||
|
{
|
||||||
|
"title": "tour_gradebook_search_title,tool_usertours",
|
||||||
|
"content": "tour_gradebook_search_content,tool_usertours",
|
||||||
|
"contentformat": "1",
|
||||||
|
"targettype": "0",
|
||||||
|
"targetvalue": ".tertiary-navigation .user-search",
|
||||||
|
"sortorder": "0",
|
||||||
|
"configdata": "{}",
|
||||||
|
"files": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "tour_gradebook_filter_title,tool_usertours",
|
||||||
|
"content": "tour_gradebook_filter_content,tool_usertours",
|
||||||
|
"contentformat": "1",
|
||||||
|
"targettype": "0",
|
||||||
|
"targetvalue": ".tertiary-navigation .initials-selector",
|
||||||
|
"sortorder": "1",
|
||||||
|
"configdata": "{}",
|
||||||
|
"files": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "tour_gradebook_action_title,tool_usertours",
|
||||||
|
"content": "tour_gradebook_action_content,tool_usertours",
|
||||||
|
"contentformat": "1",
|
||||||
|
"targettype": "0",
|
||||||
|
"targetvalue": "tr.heading th.highlightable .action-menu.grader",
|
||||||
|
"sortorder": "2",
|
||||||
|
"configdata": "{}",
|
||||||
|
"files": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -24,6 +24,6 @@
|
|||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$plugin->version = 2023042400; // The current module version (Date: YYYYMMDDXX).
|
$plugin->version = 2023053000; // The current module version (Date: YYYYMMDDXX).
|
||||||
$plugin->requires = 2023041800; // Requires this Moodle version.
|
$plugin->requires = 2023041800; // Requires this Moodle version.
|
||||||
$plugin->component = 'tool_usertours'; // Full name of the plugin (used for diagnostics).
|
$plugin->component = 'tool_usertours'; // Full name of the plugin (used for diagnostics).
|
||||||
|
@ -212,13 +212,13 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.path-grade-report-grader .action-menu {
|
.path-grade-report-grader .gradeparent table .action-menu {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: -0.5rem;
|
margin-right: -0.5rem;
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.path-grade-report-grader .heading .action-menu {
|
.path-grade-report-grader .gradeparent table .heading .action-menu {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user