From e3abf8c14a166cb533e7342c6da4494e4c92852a Mon Sep 17 00:00:00 2001
From: Pim Hutting
Date: Thu, 29 Jan 2026 16:31:21 +0100
Subject: [PATCH] chore: removed curly brackets from css comments
---
src/App.css | 4 ++--
src/components/Logging/Filters.module.css | 4 ++--
src/components/Logging/Logging.module.css | 4 ++--
src/components/TextField.module.css | 4 ++--
src/index.css | 4 ++--
src/pages/Home/Home.module.css | 4 ++--
.../MonitoringPage/components/ExperimentLogs.module.css | 5 +++++
src/pages/MonitoringPage/components/ExperimentLogs.tsx | 3 +++
src/pages/VisProgPage/VisProg.module.css | 4 ++--
.../visualProgrammingUI/components/PlanEditor.module.css | 4 ++--
.../components/RuleBasedHandle.module.css | 4 ++--
.../visualProgrammingUI/components/SaveLoadPanel.module.css | 4 ++--
.../visualProgrammingUI/components/WarningSidebar.module.css | 4 ++--
13 files changed, 30 insertions(+), 22 deletions(-)
diff --git a/src/App.css b/src/App.css
index f05b2b1..1f4526b 100644
--- a/src/App.css
+++ b/src/App.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)
-*/}
+*/
.logopepper {
height: 8em;
padding: 1.5em;
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..e18926c 100644
--- a/src/index.css
+++ b/src/index.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)
-*/}
+*/
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
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/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/PlanEditor.module.css b/src/pages/VisProgPage/visualProgrammingUI/components/PlanEditor.module.css
index 91e3f98..2c7a026 100644
--- a/src/pages/VisProgPage/visualProgrammingUI/components/PlanEditor.module.css
+++ b/src/pages/VisProgPage/visualProgrammingUI/components/PlanEditor.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)
-*/}
+*/
.planDialog {
overflow:visible;
width: 80vw;
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;