diff --git a/src/components/Icons/Next.tsx b/src/components/Icons/Next.tsx index 1d30937..bb7b767 100644 --- a/src/components/Icons/Next.tsx +++ b/src/components/Icons/Next.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) export default function Next({ fill }: { fill?: string }) { return diff --git a/src/components/Icons/Pause.tsx b/src/components/Icons/Pause.tsx index dcf5e08..fb915d5 100644 --- a/src/components/Icons/Pause.tsx +++ b/src/components/Icons/Pause.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) export default function Pause({ fill }: { fill?: string }) { return diff --git a/src/components/Icons/Play.tsx b/src/components/Icons/Play.tsx index 3f0fb6b..2df43ac 100644 --- a/src/components/Icons/Play.tsx +++ b/src/components/Icons/Play.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) export default function Play({ fill }: { fill?: string }) { return diff --git a/src/components/Icons/Redo.tsx b/src/components/Icons/Redo.tsx index 4268fc5..9a5e55b 100644 --- a/src/components/Icons/Redo.tsx +++ b/src/components/Icons/Redo.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) export default function Redo({ fill }: { fill?: string }) { return diff --git a/src/components/Icons/Replay.tsx b/src/components/Icons/Replay.tsx index 057d4b4..30892a2 100644 --- a/src/components/Icons/Replay.tsx +++ b/src/components/Icons/Replay.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) export default function Replay({ fill }: { fill?: string }) { return diff --git a/src/components/Logging/Definitions.ts b/src/components/Logging/Definitions.ts index a870301..63fe4c0 100644 --- a/src/components/Logging/Definitions.ts +++ b/src/components/Logging/Definitions.ts @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) import type {Cell} from "../../utils/cellStore.ts"; import type {LogRecord} from "./useLogs.ts"; diff --git a/src/components/Logging/Filters.module.css b/src/components/Logging/Filters.module.css index 3353866..d5566d8 100644 --- a/src/components/Logging/Filters.module.css +++ b/src/components/Logging/Filters.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .filter-root { position: relative; display: flex; diff --git a/src/components/Logging/Logging.module.css b/src/components/Logging/Logging.module.css index 9b26530..4290277 100644 --- a/src/components/Logging/Logging.module.css +++ b/src/components/Logging/Logging.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .logging-container { box-sizing: border-box; diff --git a/src/components/TextField.module.css b/src/components/TextField.module.css index 139a55c..4572bf1 100644 --- a/src/components/TextField.module.css +++ b/src/components/TextField.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .text-field { border: 1px solid transparent; border-radius: 5pt; diff --git a/src/index.css b/src/index.css index ff4607f..db23e57 100644 --- a/src/index.css +++ b/src/index.css @@ -4,6 +4,11 @@ University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) */} +/* +This program has been developed by students from the bachelor Computer Science at Utrecht +University within the Software Project course. +© Copyright Utrecht University (Department of Information and Computing Sciences) +*/ :root { font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; diff --git a/src/pages/Home/Home.module.css b/src/pages/Home/Home.module.css index 11499aa..9ec90e5 100644 --- a/src/pages/Home/Home.module.css +++ b/src/pages/Home/Home.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .read_the_docs { color: #888; } diff --git a/src/pages/MonitoringPage/MonitoringPage.module.css b/src/pages/MonitoringPage/MonitoringPage.module.css index 0603a03..b7f2651 100644 --- a/src/pages/MonitoringPage/MonitoringPage.module.css +++ b/src/pages/MonitoringPage/MonitoringPage.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .dashboardContainer { display: grid; grid-template-columns: 2fr 1fr; /* Left = content, Right = logs */ diff --git a/src/pages/MonitoringPage/components/ExperimentLogs.module.css b/src/pages/MonitoringPage/components/ExperimentLogs.module.css index b25dffe..499e2ce 100644 --- a/src/pages/MonitoringPage/components/ExperimentLogs.module.css +++ b/src/pages/MonitoringPage/components/ExperimentLogs.module.css @@ -1,3 +1,8 @@ +/* +This program has been developed by students from the bachelor Computer Science at Utrecht +University within the Software Project course. +© Copyright Utrecht University (Department of Information and Computing Sciences) +*/ .logs { /* grid-area used in MonitoringPage.module.css */ grid-area: logs; diff --git a/src/pages/MonitoringPage/components/ExperimentLogs.tsx b/src/pages/MonitoringPage/components/ExperimentLogs.tsx index ff0d118..037e4df 100644 --- a/src/pages/MonitoringPage/components/ExperimentLogs.tsx +++ b/src/pages/MonitoringPage/components/ExperimentLogs.tsx @@ -1,3 +1,6 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// © Copyright Utrecht University (Department of Information and Computing Sciences) import styles from "./ExperimentLogs.module.css"; import {LogMessages} from "../../../components/Logging/Logging.tsx"; import {useEffect, useMemo, useState} from "react"; diff --git a/src/pages/VisProgPage/VisProg.module.css b/src/pages/VisProgPage/VisProg.module.css index 05a5fc6..a6f7dc6 100644 --- a/src/pages/VisProgPage/VisProg.module.css +++ b/src/pages/VisProgPage/VisProg.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ /* editor UI */ .inner-editor-container { diff --git a/src/pages/VisProgPage/visualProgrammingUI/components/RuleBasedHandle.module.css b/src/pages/VisProgPage/visualProgrammingUI/components/RuleBasedHandle.module.css index 963e46d..5b533be 100644 --- a/src/pages/VisProgPage/visualProgrammingUI/components/RuleBasedHandle.module.css +++ b/src/pages/VisProgPage/visualProgrammingUI/components/RuleBasedHandle.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ :global(.react-flow__handle.source){ border-radius: 100%; } diff --git a/src/pages/VisProgPage/visualProgrammingUI/components/SaveLoadPanel.module.css b/src/pages/VisProgPage/visualProgrammingUI/components/SaveLoadPanel.module.css index 3b1733b..ec9fb8f 100644 --- a/src/pages/VisProgPage/visualProgrammingUI/components/SaveLoadPanel.module.css +++ b/src/pages/VisProgPage/visualProgrammingUI/components/SaveLoadPanel.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .save-load-panel { border-radius: 0 0 5pt 5pt; background-color: canvas; diff --git a/src/pages/VisProgPage/visualProgrammingUI/components/WarningSidebar.module.css b/src/pages/VisProgPage/visualProgrammingUI/components/WarningSidebar.module.css index 6134d7a..d992234 100644 --- a/src/pages/VisProgPage/visualProgrammingUI/components/WarningSidebar.module.css +++ b/src/pages/VisProgPage/visualProgrammingUI/components/WarningSidebar.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .warnings-sidebar { min-width: auto; max-width: 340px; diff --git a/src/pages/VisProgPage/visualProgrammingUI/nodes/InferredBeliefNode.module.css b/src/pages/VisProgPage/visualProgrammingUI/nodes/InferredBeliefNode.module.css index d6186ed..ea8b16c 100644 --- a/src/pages/VisProgPage/visualProgrammingUI/nodes/InferredBeliefNode.module.css +++ b/src/pages/VisProgPage/visualProgrammingUI/nodes/InferredBeliefNode.module.css @@ -1,8 +1,8 @@ -{/* +/* This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences) -*/} +*/ .operator-switch { display: inline-flex; align-items: center;