stable

Clone or download

Read-only

chore: Import package styles with pkg: urls and sass exports

Implements request #39350 Use sass NodePackageImporter How to test: No functional change expected. Tuleap styles should not change. Font Awesome icons and TLP icons should still function as before. Storybook should function as before. Note: Artidoc parallel watch with prose-mirror-editor does not pick up style changes. The best way to have quick feedback when working on prose-mirror-editor is probably to write a Storybook story for it instead of double-watching though. Why? Starting from sass v1.71.0 (see [0]), Sass offers an API called NodePackageImporter to resolve .scss files. For all stylesheets coming from an NPM package, we must use the `pkg:` prefix to load it. For example `pkg:@tuleap/tlp-modal`. It has several advantages over the current situation of the default Sass importer: 1. It relies on Node resolution and respects `exports` field in package.json. This will let us define explicitly which .css or .scss file can be imported by consumers of a given package. This makes the dependencies between our packages more explicit. It lets us drop the `"default": <path>` rules in `exports` in favor of `"sass"` rules. It also lets us drop (in most cases) the special `"./style": <path>` in `exports`, because now Sass can understand that we mean to import a stylesheet. It also lets us drop the `"style": <path>` fields in package.json, we replace it in favor of a single system with `exports`. 2. It moves the file resolution from vite and webpack to Sass. This means more interoperability and fewer "special cases" in our build system. 3. It is a bit stricter. When making the change, I had to change some relative paths (`../../../`) to pkg paths. It will help us eliminate more hidden cross-package dependencies. [0] https://github.com/sass/dart-sass/blob/main/CHANGELOG.md#1710 Change-Id: Ieeefc8ed9ebe436404d1ac4d801c81a58bbab257

Modified Files

Name
M lib/frontend/build-system-configurator/src/vite/vite-configurator.ts +10 −1 Go to diff View file
M lib/frontend/build-system-configurator/src/webpack/webpack-rule-configs.ts +12 −1 Go to diff View file
M lib/frontend/burningparrot-sign-in/package.json +1 −4 Go to diff View file
M lib/frontend/cross-ref-badges/package.json +1 −6 Go to diff View file
M lib/frontend/cross-ref-badges/themes/main.scss +1 −1 Go to diff View file
M lib/frontend/drag-and-drop/package.json +8 −5 Go to diff View file
M lib/frontend/fp-feedback/package.json +2 −4 Go to diff View file
M lib/frontend/lazybox-users-autocomplete/package.json +4 −9 Go to diff View file
M lib/frontend/lazybox/package.json +4 −8 Go to diff View file
M lib/frontend/lazybox/src/selection/selection-badge.scss +2 −2 Go to diff View file
M lib/frontend/list-picker/package.json +4 −7 Go to diff View file
M lib/frontend/list-picker/themes/_predefined-template.scss +1 −1 Go to diff View file
M lib/frontend/list-picker/themes/_selection.scss +1 −1 Go to diff View file
M lib/frontend/mention/README.md +1 −1 Go to diff View file
M lib/frontend/mention/package.json +7 −4 Go to diff View file
M lib/frontend/project-background/README.md +2 −2 Go to diff View file
M lib/frontend/project-background/package.json +1 −6 Go to diff View file
M lib/frontend/project-sidebar-internal/dev-loader-style.scss +2 −2 Go to diff View file
M lib/frontend/project-sidebar-internal/src/ProjectSidebar.vue +9 −9 Go to diff View file
M lib/frontend/project-sidebar-internal/src/Styles/_sidebar-collapsed.scss +1 −1 Go to diff View file
M lib/frontend/project-sidebar-internal/src/Styles/_sidebar-generic.scss +1 −1 Go to diff View file
M lib/frontend/project-sidebar-internal/src/Styles/_sidebar-project.scss +1 −1 Go to diff View file
M lib/frontend/project-sidebar-internal/src/prestyle.scss +1 −1 Go to diff View file
M lib/frontend/project-sidebar/src/font-faces.scss +1 −1 Go to diff View file
M lib/frontend/project-sidebar/src/prestyle.scss +1 −1 Go to diff View file
M lib/frontend/prose-mirror-editor/package.json +4 −5 Go to diff View file
M lib/frontend/tlp-badge/package.json +1 −1 Go to diff View file
M lib/frontend/tlp-badge/themes/main.scss +1 −1 Go to diff View file
M lib/frontend/tlp-button/package.json +1 −6 Go to diff View file
M lib/frontend/tlp-date-picker/package.json +4 −4 Go to diff View file
M lib/frontend/tlp-date-picker/pnpm-lock.yaml +53 −0 Go to diff View file
M lib/frontend/tlp-date-picker/scss/main.scss +1 −1 Go to diff View file
M lib/frontend/tlp-date-picker/src/main.fr_FR.ts +1 −0 Go to diff View file
M lib/frontend/tlp-date-picker/src/main.ts +2 −0 Go to diff View file
M lib/frontend/tlp-date-picker/vite.config.ts +11 −2 Go to diff View file
M lib/frontend/tlp-dropdown/package.json +8 −5 Go to diff View file
M lib/frontend/tlp-modal/package.json +9 −4 Go to diff View file
M lib/frontend/tlp-popovers/package.json +12 −8 Go to diff View file
M lib/frontend/tlp-styles/package.json +4 −4 Go to diff View file
M lib/frontend/tlp-swatch-colors/README.md +2 −2 Go to diff View file
M lib/frontend/tlp-swatch-colors/package.json +1 −6 Go to diff View file
M plugins/agiledashboard/package.json +2 −1 Go to diff View file
M plugins/agiledashboard/pnpm-lock.yaml +3 −0 Go to diff View file
M plugins/agiledashboard/scripts/administration/themes/main.scss +2 −2 Go to diff View file
M plugins/agiledashboard/scripts/burnup-chart/themes/burnup-chart.scss +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/lib/scrum-header/themes/main.scss +2 −2 Go to diff View file
M plugins/agiledashboard/scripts/lib/scrum-milestone-header/package.json +2 −7 Go to diff View file
M plugins/agiledashboard/scripts/overview/themes/main.scss +2 −2 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/themes/_backlog-item-details.scss +2 −2 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/themes/_backlog-items-selected-bar.scss +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/themes/_item-progress.scss +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/themes/_project-colors.scss +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/themes/main.scss +5 −5 Go to diff View file
M plugins/agiledashboard/scripts/split-modal/themes/split-modal.scss +2 −2 Go to diff View file
M plugins/agiledashboard/themes/FlamingParrot/css/planning-admin-colorpicker.scss +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/App.vue +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/section/SectionContent.vue +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/section/description/NotificationBar.vue +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/section/description/SectionDescriptionEditorProseMirror.vue +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/components/section/header/SectionDropdown.vue +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/themes/includes/_ckeditor-overrides.scss +1 −1 Go to diff View file
M plugins/artidoc/scripts/artidoc/src/themes/includes/_project-background.scss +2 −2 Go to diff View file
M plugins/baseline/package.json +1 −0 Go to diff View file
M plugins/baseline/pnpm-lock.yaml +3 −0 Go to diff View file
M plugins/baseline/themes/baseline/_baseline-content.scss +2 −2 Go to diff View file
M plugins/baseline/themes/baseline/_comparison-content.scss +1 −1 Go to diff View file
M plugins/baseline/themes/baseline/_project-header-background.scss +2 −2 Go to diff View file
M plugins/cardwall/scripts/lib/card-fields/package.json +2 −5 Go to diff View file
M plugins/cardwall/scripts/lib/card-fields/themes/main.scss +1 −1 Go to diff View file
M plugins/cardwall/themes/default/css/_cardwall.scss +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/themes/_query-edition.scss +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/themes/_writing-mode.scss +1 −1 Go to diff View file
M plugins/document/themes/_icons.scss +1 −1 Go to diff View file
M plugins/document/themes/_project_background_header.scss +1 −1 Go to diff View file
M plugins/document/themes/document.scss +22 −22 Go to diff View file
M plugins/document/themes/quicklook/_quicklook-folder.scss +1 −1 Go to diff View file
M plugins/document_generation/scripts/tracker-cross-report-action/src/Components/ExplanationsExport.vue +1 −1 Go to diff View file
M plugins/document_generation/scripts/tracker-cross-report-action/src/Components/ExportGenerationErrorMessage.vue +1 −1 Go to diff View file
M plugins/document_generation/scripts/tracker-cross-report-action/src/Components/MainComponent.vue +4 −4 Go to diff View file
M plugins/document_generation/scripts/tracker-cross-report-action/src/Helpers/use-list-picker.ts +1 −1 Go to diff View file
M plugins/git/scripts/artifact-create-branch-action/src/components/MainComponent.vue +4 −4 Go to diff View file
M plugins/git/scripts/repositories-list/themes/background.scss +2 −2 Go to diff View file
M plugins/git/scripts/repositories-list/themes/main.scss +1 −1 Go to diff View file
M plugins/git/scripts/repository/themes/_project-background-header.scss +2 −2 Go to diff View file
M plugins/git/scripts/repository/themes/repository/_repository.scss +1 −1 Go to diff View file
M plugins/gitlab/scripts/artifact-create-branch-action/src/components/MainComponent.vue +4 −4 Go to diff View file
M plugins/gitlab/scripts/group-link-wizard/src/components/GitlabGroupLinkAppComponent.vue +1 −1 Go to diff View file
M plugins/gitlab/scripts/lib/administration-theme/package.json +4 −2 Go to diff View file
M plugins/gitlab/scripts/lib/administration-theme/pnpm-lock.yaml +7 −0 Go to diff View file
M plugins/gitlab/scripts/lib/administration-theme/themes/main.scss +2 −2 Go to diff View file
M plugins/gitlab/scripts/linked-group/themes/main.scss +1 −1 Go to diff View file
M plugins/graphontrackersv5/themes/default/css/style.scss +1 −1 Go to diff View file
M plugins/kanban/scripts/kanban-homepage/themes/kanban-homepage.scss +2 −2 Go to diff View file
M plugins/kanban/scripts/kanban/themes/_kanban-item.scss +2 −2 Go to diff View file
M plugins/kanban/scripts/kanban/themes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/kanban/scripts/kanban/themes/main.scss +5 −5 Go to diff View file
M plugins/label/scripts/configure-widget/themes/labels-box.scss +1 −1 Go to diff View file
M plugins/openidconnectclient/package.json +1 −0 Go to diff View file
M plugins/openidconnectclient/pnpm-lock.yaml +7 −0 Go to diff View file
M plugins/openidconnectclient/themes/BurningParrot/css/includes/_button-colors.scss +1 −1 Go to diff View file
M plugins/openidconnectclient/themes/BurningParrot/css/includes/_provider-admin-modal.scss +1 −1 Go to diff View file
M plugins/openidconnectclient/themes/BurningParrot/css/style.scss +4 −4 Go to diff View file
M plugins/openidconnectclient/themes/FlamingParrot/css/style.scss +10 −10 Go to diff View file
M plugins/openidconnectclient/themes/default/css/style.scss +1 −1 Go to diff View file
M plugins/program_management/scripts/admin/themes/admin.scss +3 −3 Go to diff View file
M plugins/program_management/scripts/planned-iterations/themes/_element.scss +1 −1 Go to diff View file
M plugins/program_management/scripts/planned-iterations/themes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/program_management/scripts/program_management/themes/_element.scss +1 −1 Go to diff View file
M plugins/program_management/scripts/program_management/themes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/program_management/scripts/program_management/themes/main.scss +1 −1 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/themes/_headers.scss +1 −1 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/themes/_release-chart.scss +2 −2 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/themes/_release-toggle-tracker-artifacts-badges.scss +1 −1 Go to diff View file
M plugins/pullrequest/scripts/lib/pullrequest-comments/package.json +8 −4 Go to diff View file
M plugins/pullrequest/scripts/lib/selectors-dropdown/package.json +1 −4 Go to diff View file
M plugins/pullrequest/scripts/lib/selectors-dropdown/themes/style.scss +1 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-overview/src/components/OverviewPane.vue +1 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-overview/src/components/Reviewers/PullRequestManageReviewersModal.vue +1 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-overview/src/components/Threads/OverviewThreads.vue +1 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequests-app/themes/includes/_file-diff.scss +1 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequests-app/themes/style.scss +3 −3 Go to diff View file
M plugins/roadmap/scripts/configure-widget/src/components/App.vue +1 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/style/_gantt-header.scss +2 −2 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/style/_popover.scss +1 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/style/_task.scss +5 −5 Go to diff View file
M plugins/svn/scripts/main/themes/FlamingParrot/css/style.scss +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_button-bar.scss +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_card-edit.scss +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_card-read.scss +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_header.scss +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/includes/_swimlane-sticky-header.scss +2 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/themes/taskboard.scss +3 −3 Go to diff View file
M plugins/testmanagement/scripts/step-definition-field/themes/FlamingParrot/style.scss +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/themes/BurningParrot/css/includes/_artifact-links-graph.scss +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/themes/BurningParrot/css/includes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/themes/BurningParrot/css/testmanagement.scss +1 −1 Go to diff View file
M plugins/testplan/themes/includes/_header.scss +1 −1 Go to diff View file
M plugins/testplan/themes/includes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/testplan/themes/includes/_test-definitions.scss +2 −2 Go to diff View file
M plugins/testplan/themes/testplan.scss +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-management-widget/src/components/WidgetQueryEditor.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/themes/style.scss +1 −1 Go to diff View file
M plugins/tracker/package.json +1 −0 Go to diff View file
M plugins/tracker/pnpm-lock.yaml +3 −0 Go to diff View file
M plugins/tracker/scripts/burndown-chart/package.json +1 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/themes/burndown-chart.scss +2 −2 Go to diff View file
M plugins/tracker/scripts/global-admin/themes/style.scss +2 −2 Go to diff View file
M plugins/tracker/scripts/lib/TQL-CodeMirror/package.json +8 −5 Go to diff View file
M plugins/tracker/scripts/lib/artifact-modal/README.md +2 −2 Go to diff View file
M plugins/tracker/scripts/lib/artifact-modal/package.json +6 −2 Go to diff View file
M plugins/tracker/scripts/lib/artifact-modal/src/adapters/UI/fields/link-field/link-field.scss +1 −1 Go to diff View file
M plugins/tracker/scripts/lib/artifact-modal/src/tuleap-artifact-modal.scss +10 −10 Go to diff View file
M plugins/tracker/scripts/lib/chart-styles/package.json +1 −3 Go to diff View file
M plugins/tracker/scripts/lib/colorpicker/package.json +7 −4 Go to diff View file
M plugins/tracker/scripts/lib/colorpicker/src/style.scss +1 −1 Go to diff View file
M plugins/tracker/scripts/lib/rich-text-editor/package.json +8 −4 Go to diff View file
M plugins/tracker/scripts/tracker-admin/themes/colorpicker.scss +1 −1 Go to diff View file
M plugins/tracker/scripts/tracker-creation/themes/_creation-color-selector.scss +1 −1 Go to diff View file
M plugins/tracker/scripts/tracker-creation/themes/success-modal.scss +2 −2 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/themes/main.scss +1 −1 Go to diff View file
M plugins/tracker/themes/BurningParrot/css/includes/_homepage.scss +1 −1 Go to diff View file
M plugins/tracker/themes/BurningParrot/css/includes/_project-tracker-background.scss +2 −2 Go to diff View file
M plugins/tracker/themes/FlamingParrot/css/dependencies-matrix.scss +1 −1 Go to diff View file
M plugins/tracker/themes/FlamingParrot/css/style.scss +7 −7 Go to diff View file
M plugins/tracker/themes/default/css/includes/_artifact-link-field.scss +1 −2 Go to diff View file
M plugins/tracker/themes/default/css/includes/_cards.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_columns-colors.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_cross-references-fields.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_field-bound-colors.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_project-header-background.scss +2 −2 Go to diff View file
M plugins/tracker/themes/default/css/style.scss +12 −12 Go to diff View file
M plugins/velocity/themes/BurningParrot/css/velocity.scss +1 −1 Go to diff View file
M plugins/webauthn/scripts/login/themes/style.scss +1 −1 Go to diff View file
M src/scripts/account/themes/includes/_appearance.scss +1 −1 Go to diff View file
M src/scripts/first-timer/src/first-timer.scss +1 −1 Go to diff View file
M src/scripts/project-registration/themes/project-registration/includes/_project-information.scss +1 −1 Go to diff View file
M src/scripts/tlp-doc/.storybook/main.ts +17 −0 Go to diff View file
M src/scripts/tlp-doc/.storybook/preview.ts +1 −1 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/fly-over/dropdowns/dropdown.scss +1 −1 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/forms/lazybox/lazybox.scss +2 −0 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/forms/lazybox/lazybox.stories.ts +0 −1 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/forms/list-picker/tlp-list-picker.stories.ts +1 −1 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/visual-assets/colors/colors.mdx +1 −1 Go to diff View file
M src/scripts/tlp-doc/stories/TLP/visual-assets/colors/colors.scss +2 −2 Go to diff View file
M src/scripts/tlp/src/scss/_components.scss +8 −8 Go to diff View file
M src/scripts/tlp/src/scss/components/_button-bar.scss +1 −1 Go to diff View file
M src/scripts/tlp/src/scss/components/_fonts.scss +12 −6 Go to diff View file
M src/scripts/tlp/src/scss/components/_forms-select2.scss +2 −2 Go to diff View file
M src/scripts/tlp/src/scss/components/_pagination.scss +1 −1 Go to diff View file
M src/scripts/tlp/src/scss/tlp.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot.scss +25 −25 Go to diff View file
M src/themes/BurningParrot/css/dashboards/dashboards.scss +2 −2 Go to diff View file
M src/themes/BurningParrot/css/homepage/homepage.scss +2 −2 Go to diff View file
M src/themes/BurningParrot/css/homepage/includes/_login.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_cross-ref-tooltip.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_help-dropdown.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_project-background.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/labels/_labels-box.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_labels.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_permissions.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_services.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_cross-ref-tooltip.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_definitions.scss +36 −36 Go to diff View file
M src/themes/FlamingParrot/css/utils/_help-dropdown.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_login.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_pre-definitions.scss +20 −13 Go to diff View file
M src/themes/FlamingParrot/css/utils/_project-background.scss +2 −2 Go to diff View file
M src/themes/FlamingParrot/css/utils/_switch-to.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_variables-color-common.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/_project-background.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/aerial-water.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/asphalt-rock.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/beach-daytime.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/blue-rain.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/blue-sand.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/brown-alpaca.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/brown-desert.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/brown-grass.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/brown-textile.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/brush-daytime.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/green-grass.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/green-leaf.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/green-trees.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/led-light.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/ocean-waves.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/octopus-black.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/orange-tulip.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/purple-building.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/purple-droplet.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/purple-textile.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/snow-mountain.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/tree-water.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/white-sheep.scss +1 −1 Go to diff View file
M src/themes/common/css/project-background/wooden-surface.scss +1 −1 Go to diff View file
M src/themes/common/css/project-sidebar.scss +1 −1 Go to diff View file
M src/themes/common/css/syntax-highlight.scss +1 −1 Go to diff View file
M src/themes/common/css/utils/_switch-to.scss +1 −1 Go to diff View file
M src/themes/common/package.json +0 −1 Go to diff View file