- ✅ Feedback van dataSensor array - ✅ dataSliders min/max and unit - ✅ Camera before Unity - ✅ Restart knop buiten service mode - ✅ Operator phonenumber button - ✅ Gracefull shutdown - ✅ Out of service control
80 lines
1.5 KiB
SCSS
80 lines
1.5 KiB
SCSS
@use '../node_modules/morphux/style.css';
|
|
|
|
@use './dashboard.scss';
|
|
@use './tabs.scss';
|
|
@use './calibration.scss';
|
|
|
|
:root {
|
|
--mux-primary-color: #247476;
|
|
--mux-primary-off-color: #1d5253;
|
|
|
|
}
|
|
|
|
body {
|
|
&:not(.ntsh_service) {
|
|
.ntsh_buttons {
|
|
display: none;
|
|
}
|
|
|
|
.mux_menubar-locater.mux_left {
|
|
.mux_menubar-item:not([uid="restart_installation"]) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.only-service {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.ntsh_service {
|
|
.no-service {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.sn {
|
|
position: absolute;
|
|
inset: 0px;
|
|
overflow: hidden;
|
|
|
|
.ntsh_menubar {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
height: 100%;
|
|
|
|
.mux_menubar {
|
|
.mux_menubar-item.mux_menubar-item-selected {
|
|
background: var(--mux-primary-off-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ntsh_logs {
|
|
position: absolute;
|
|
inset: 0px;
|
|
box-sizing: border-box;
|
|
padding: var(--mux-edge-offset);
|
|
font-family: monospace;
|
|
background: black;
|
|
overflow-y: auto;
|
|
|
|
.ntsh_log {
|
|
&.ntsh_log-fill {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #939393;
|
|
}
|
|
|
|
&.ntsh_log-normal {
|
|
color: #c7c7c7;
|
|
}
|
|
}
|
|
}
|
|
} |