Course Optimizer is a feature approved by the Openedx community that adds a "Course Optimizer" page to studio where users can run a scan of a course for broken links - links that point to pages that have a 404. Depends on backend: openedx/edx-platform#35887 - test together. This also requires adding a nav menu item to edx-platform legacy studio. That should be implemented before enabling the waffle flag on prod. Links: - [Internal JIRA ticket](https://2u-internal.atlassian.net/browse/TNL-11809) - [Course Optimizer Discovery](https://2u-internal.atlassian.net/wiki/spaces/TNL/pages/1426587703/TNL-11744+Course+Optimizer+Discovery) - [Openedx community proposal](https://github.com/openedx/platform-roadmap/issues/388)
69 lines
1.9 KiB
SCSS
69 lines
1.9 KiB
SCSS
@import "~@edx/brand/paragon/fonts";
|
|
@import "~@edx/brand/paragon/variables";
|
|
@import "~@openedx/paragon/scss/core/core";
|
|
@import "~@edx/brand/paragon/overrides";
|
|
@import "~@edx/frontend-component-header/dist/index";
|
|
@import "assets/scss/variables";
|
|
@import "assets/scss/form";
|
|
@import "assets/scss/utilities";
|
|
@import "assets/scss/animations";
|
|
@import "pages-and-resources/discussions/app-list/AppList";
|
|
@import "advanced-settings/scss/AdvancedSettings";
|
|
@import "grading-settings/scss/GradingSettings";
|
|
@import "studio-home/scss/StudioHome";
|
|
@import "generic/styles";
|
|
@import "schedule-and-details/ScheduleAndDetails";
|
|
@import "course-team/CourseTeam";
|
|
@import "course-updates/CourseUpdates";
|
|
@import "export-page/CourseExportPage";
|
|
@import "import-page/CourseImportPage";
|
|
@import "taxonomy";
|
|
@import "library-authoring";
|
|
@import "files-and-videos";
|
|
@import "content-tags-drawer";
|
|
@import "course-outline/CourseOutline";
|
|
@import "course-unit/CourseUnit";
|
|
@import "course-checklist/CourseChecklist";
|
|
@import "textbooks/Textbooks";
|
|
@import "content-tags-drawer/ContentTagsDropDownSelector";
|
|
@import "content-tags-drawer/ContentTagsCollapsible";
|
|
@import "search-modal";
|
|
@import "search-manager";
|
|
@import "certificates/scss/Certificates";
|
|
@import "group-configurations/GroupConfigurations";
|
|
@import "optimizer-page/scan-results/ScanResults";
|
|
|
|
// To apply the glow effect to the selected Section/Subsection, in the Course Outline
|
|
div.row:has(> div > div.highlight) {
|
|
animation: 5s glow;
|
|
animation-timing-function: cubic-bezier(1, 0, .72, .04);
|
|
}
|
|
|
|
// To apply the glow effect to the selected xblock, in the Unit Outline
|
|
div.xblock-highlight {
|
|
animation: 5s glow;
|
|
animation-timing-function: cubic-bezier(1, 0, .72, .04);
|
|
}
|
|
|
|
@keyframes glow {
|
|
0% {
|
|
box-shadow: 0 0 5px 5px $primary-500;
|
|
}
|
|
|
|
100% {
|
|
box-shadow: unset;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: $light-200;
|
|
|
|
.editor-page {
|
|
background-color: $light-100;
|
|
}
|
|
}
|
|
|
|
mark {
|
|
padding: 0;
|
|
}
|