Merge branch 'fix/comment-fix' into 'main'
chore: fixed a comment See merge request ics/sp/2025/n25b/pepperplus-ui!52
This commit was merged in pull request #52.
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.logopepper {
|
.logopepper {
|
||||||
height: 8em;
|
height: 8em;
|
||||||
padding: 1.5em;
|
padding: 1.5em;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.filter-root {
|
.filter-root {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.logging-container {
|
.logging-container {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.text-field {
|
.text-field {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 5pt;
|
border-radius: 5pt;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.read_the_docs {
|
.read_the_docs {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.dashboardContainer {
|
.dashboardContainer {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 2fr 1fr; /* Left = content, Right = logs */
|
grid-template-columns: 2fr 1fr; /* Left = content, Right = logs */
|
||||||
|
|||||||
@@ -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 {
|
.logs {
|
||||||
/* grid-area used in MonitoringPage.module.css */
|
/* grid-area used in MonitoringPage.module.css */
|
||||||
grid-area: logs;
|
grid-area: logs;
|
||||||
|
|||||||
@@ -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 styles from "./ExperimentLogs.module.css";
|
||||||
import {LogMessages} from "../../../components/Logging/Logging.tsx";
|
import {LogMessages} from "../../../components/Logging/Logging.tsx";
|
||||||
import {useEffect, useMemo, useState} from "react";
|
import {useEffect, useMemo, useState} from "react";
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
/* editor UI */
|
/* editor UI */
|
||||||
|
|
||||||
.inner-editor-container {
|
.inner-editor-container {
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.gestureEditor {
|
.gestureEditor {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.planDialog {
|
.planDialog {
|
||||||
overflow:visible;
|
overflow:visible;
|
||||||
width: 80vw;
|
width: 80vw;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
:global(.react-flow__handle.source){
|
:global(.react-flow__handle.source){
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.save-load-panel {
|
.save-load-panel {
|
||||||
border-radius: 0 0 5pt 5pt;
|
border-radius: 0 0 5pt 5pt;
|
||||||
background-color: canvas;
|
background-color: canvas;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.warnings-sidebar {
|
.warnings-sidebar {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
max-width: 340px;
|
max-width: 340px;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{/*
|
/*
|
||||||
This program has been developed by students from the bachelor Computer Science at Utrecht
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
||||||
University within the Software Project course.
|
University within the Software Project course.
|
||||||
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
||||||
*/}
|
*/
|
||||||
.operator-switch {
|
.operator-switch {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user