2025-03-25 06:17:41 +00:00
|
|
|
@use "../abstracts/variables.scss" as *;
|
2025-03-27 10:46:31 +00:00
|
|
|
@use "../abstracts/mixins.scss" as *;
|
2025-03-25 06:17:41 +00:00
|
|
|
|
|
|
|
// Main Container
|
|
|
|
.realTime-viz {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
border-radius: 20px;
|
|
|
|
box-shadow: $box-shadow-medium;
|
2025-03-26 07:02:09 +00:00
|
|
|
width: calc(100% - (320px + 270px + 90px));
|
|
|
|
height: calc(100% - (200px + 80px));
|
2025-03-25 06:17:41 +00:00
|
|
|
position: absolute;
|
2025-03-26 07:02:09 +00:00
|
|
|
top: 50%;
|
|
|
|
left: calc(270px + 45px);
|
|
|
|
transform: translate(0, -50%);
|
|
|
|
border-radius: #{$border-radius-medium};
|
|
|
|
transition: all 0.2s;
|
|
|
|
z-index: #{$z-index-default};
|
2025-03-27 12:34:16 +00:00
|
|
|
.floating {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 250px;
|
|
|
|
min-height: 83px;
|
|
|
|
background: var(--background-color);
|
|
|
|
border: 1.23px solid var(--border-color);
|
|
|
|
box-shadow: 0px 4.91px 4.91px 0px #0000001c;
|
|
|
|
border-radius: $border-radius-medium;
|
|
|
|
padding: 18px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
2025-03-26 07:02:09 +00:00
|
|
|
.scene-container {
|
|
|
|
overflow: hidden;
|
2025-03-25 11:03:11 +00:00
|
|
|
}
|
2025-03-26 07:02:09 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
2025-03-25 08:55:51 +00:00
|
|
|
}
|
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.icons-container {
|
|
|
|
.icon {
|
|
|
|
&:first-child {
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-27 06:44:19 +00:00
|
|
|
.zone-wrapper {
|
2025-03-25 06:17:41 +00:00
|
|
|
display: flex;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
gap: 6px;
|
2025-03-27 05:24:40 +00:00
|
|
|
|
2025-03-25 06:17:41 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 80%;
|
|
|
|
overflow: auto;
|
2025-03-27 05:24:40 +00:00
|
|
|
// max-width: calc(100% - 450px);
|
|
|
|
|
2025-03-25 06:17:41 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2025-03-27 05:24:40 +00:00
|
|
|
.arrow {
|
2025-03-27 06:44:19 +00:00
|
|
|
background-color: var(--highlight-accent-color);
|
2025-03-27 05:24:40 +00:00
|
|
|
color: var(--background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.zones-wrapper {
|
2025-03-27 06:44:19 +00:00
|
|
|
padding: 6px;
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
border-radius: #{$border-radius-medium};
|
|
|
|
overflow-x: auto;
|
2025-03-27 05:24:40 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2025-03-27 12:26:31 +00:00
|
|
|
.no-zone {
|
|
|
|
@include flex-center;
|
|
|
|
gap: 4px;
|
|
|
|
padding: 4px;
|
|
|
|
color: var(--text-disabled);
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
.zone {
|
|
|
|
width: auto;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: $small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
color: var(--background-color);
|
2025-03-26 08:22:10 +00:00
|
|
|
// color: #FCFDFD !important;
|
2025-03-25 06:17:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-27 06:44:19 +00:00
|
|
|
.zone-wrapper.bottom {
|
2025-03-26 08:22:10 +00:00
|
|
|
bottom: 210px;
|
|
|
|
}
|
|
|
|
|
2025-03-25 06:17:41 +00:00
|
|
|
.content-container {
|
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-container {
|
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
|
|
|
height: 600px;
|
|
|
|
background-color: rgb(235, 235, 235);
|
|
|
|
margin: 0 30px;
|
|
|
|
transition: height 0.3s ease, margin 0.3s ease;
|
|
|
|
|
2025-03-27 06:44:19 +00:00
|
|
|
.zone-wrapper {
|
2025-03-26 08:22:10 +00:00
|
|
|
display: flex;
|
|
|
|
background-color: rgba(224, 223, 255, 0.5);
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
gap: 6px;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 80%;
|
|
|
|
overflow: auto;
|
|
|
|
transition: transform 0.3s ease;
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zone {
|
|
|
|
width: auto;
|
|
|
|
background-color: $background-color;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background-color 0.3s ease;
|
2025-03-25 11:03:11 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
&.active {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: var(--accent-color);
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
&.bottom {
|
|
|
|
bottom: 210px;
|
|
|
|
}
|
2025-03-25 11:03:11 +00:00
|
|
|
}
|
2025-03-25 11:00:33 +00:00
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.panel {
|
|
|
|
position: absolute;
|
|
|
|
background: white;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
transition: all 0.3s ease;
|
2025-03-27 04:13:52 +00:00
|
|
|
border-radius: 6px;
|
2025-03-26 08:22:10 +00:00
|
|
|
overflow: visible !important;
|
2025-03-27 06:46:20 +00:00
|
|
|
z-index: $z-index-tools;
|
2025-03-27 04:13:52 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.panel-content {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-03-27 10:46:31 +00:00
|
|
|
gap: 6px;
|
2025-03-26 08:22:10 +00:00
|
|
|
background-color: var(--background-color);
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.chart-container {
|
|
|
|
width: 100%;
|
2025-03-27 10:46:31 +00:00
|
|
|
height: 25% !important;
|
2025-03-26 08:22:10 +00:00
|
|
|
min-height: 150px;
|
|
|
|
max-height: 100%;
|
|
|
|
border: 1px dotted #a9a9a9;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0px 2px 6px 0px rgba(60, 60, 67, 0.1);
|
|
|
|
padding: 6px 0;
|
|
|
|
background-color: white;
|
2025-03-27 05:24:40 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.kebab {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
z-index: 10;
|
2025-03-27 10:46:31 +00:00
|
|
|
cursor: pointer;
|
2025-03-27 05:24:40 +00:00
|
|
|
@include flex-center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kebab-options {
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
right: -100px;
|
|
|
|
transform: translate(0px, 0);
|
|
|
|
background-color: var(--background-color);
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 6px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
box-shadow: var(--box-shadow-medium);
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
align-items: center;
|
|
|
|
padding: 5px 10px;
|
|
|
|
color: var(--text-color);
|
|
|
|
|
2025-03-27 06:46:20 +00:00
|
|
|
&:hover {
|
|
|
|
.label {
|
2025-03-27 05:24:40 +00:00
|
|
|
color: var(--accent-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--highlight-accent-color);
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
&:first-child {
|
|
|
|
fill: var(--accent-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
fill: auto;
|
|
|
|
stroke: var(--accent-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-03-27 06:46:20 +00:00
|
|
|
|
|
|
|
.btn-blur {
|
|
|
|
color: var(--text-disabled);
|
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2025-03-27 05:24:40 +00:00
|
|
|
}
|
2025-03-26 08:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.close-btn {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top-panel,
|
|
|
|
&.bottom-panel {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
.panel-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
height: 100% !important;
|
|
|
|
width: 20%;
|
|
|
|
min-width: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top-panel {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom-panel {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left-panel {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 180px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right-panel {
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-27 12:34:16 +00:00
|
|
|
.playingFlase {
|
2025-03-27 06:44:19 +00:00
|
|
|
.zone-wrapper.bottom {
|
2025-03-27 03:36:26 +00:00
|
|
|
bottom: 300px;
|
2025-03-26 08:22:10 +00:00
|
|
|
}
|
|
|
|
}
|
2025-03-27 05:24:40 +00:00
|
|
|
|
2025-03-25 06:17:41 +00:00
|
|
|
// Side Buttons
|
|
|
|
.side-button-container {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
background-color: var(--background-color);
|
2025-03-27 03:36:26 +00:00
|
|
|
padding: 2px;
|
|
|
|
border-radius: 2px;
|
2025-03-25 06:17:41 +00:00
|
|
|
transition: transform 0.3s ease;
|
2025-03-27 03:36:26 +00:00
|
|
|
box-shadow: #{$box-shadow-medium};
|
2025-03-25 06:17:41 +00:00
|
|
|
|
|
|
|
.extra-Bs {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 12px;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-button {
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2025-03-27 04:13:52 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
// align-items: center;
|
2025-03-25 06:17:41 +00:00
|
|
|
background-color: var(--accent-color);
|
|
|
|
border: none;
|
|
|
|
color: var(--background-color);
|
|
|
|
border-radius: 4px;
|
2025-03-27 03:36:26 +00:00
|
|
|
.add-icon {
|
|
|
|
@include flex-center;
|
|
|
|
transition: rotate 0.2s;
|
|
|
|
}
|
|
|
|
path {
|
|
|
|
stroke: var(--primary-color);
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.active {
|
|
|
|
background: #ffe3e0;
|
|
|
|
.add-icon {
|
|
|
|
rotate: 45deg;
|
|
|
|
path {
|
|
|
|
stroke: #f65648;
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
2025-03-26 08:22:10 +00:00
|
|
|
top: -30px;
|
2025-03-25 06:17:41 +00:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
2025-03-26 08:22:10 +00:00
|
|
|
right: -30px;
|
2025-03-25 06:17:41 +00:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
2025-03-26 08:22:10 +00:00
|
|
|
bottom: -30px;
|
2025-03-25 06:17:41 +00:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
2025-03-26 08:22:10 +00:00
|
|
|
left: -30px;
|
2025-03-25 06:17:41 +00:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.right.side-button-container {
|
|
|
|
.extra-Bs {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-25 06:17:41 +00:00
|
|
|
.left.side-button-container {
|
|
|
|
.extra-Bs {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
// Theme Container
|
|
|
|
.theme-container {
|
|
|
|
width: 250px;
|
|
|
|
padding: 12px;
|
|
|
|
box-shadow: 1px -3px 4px 0px rgba(0, 0, 0, 0.11);
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: white;
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: -100%;
|
|
|
|
transform: translate(-0%, 0);
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 12px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
color: #2b3344;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-preset-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.theme-preset {
|
|
|
|
display: flex;
|
|
|
|
gap: 2px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: border 0.3s ease;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border: 1px solid var(--primary-color);
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
left: 1px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
|
2025-03-26 08:22:10 +00:00
|
|
|
.custom-color {
|
2025-03-25 06:17:41 +00:00
|
|
|
display: flex;
|
2025-03-26 08:22:10 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.color-displayer {
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid var(--accent-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 06:17:41 +00:00
|
|
|
}
|
2025-03-26 07:02:04 +00:00
|
|
|
}
|
2025-03-27 05:24:40 +00:00
|
|
|
|
|
|
|
.arrow {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 10;
|
2025-03-27 06:44:19 +00:00
|
|
|
height: 100%;
|
2025-03-27 05:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.left-arrow {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-arrow {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zone {
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zone.active {
|
|
|
|
background-color: #007bff;
|
|
|
|
color: white;
|
2025-03-27 10:46:31 +00:00
|
|
|
}
|