Added variable temps to the simple view
Fixed height shifting on model selections
Tweaked style and added guides in simple view
Linked profiles to simple view
This commit is contained in:
fraxle
2026-06-13 10:03:54 +01:00
parent 445fba033d
commit d8465675cd
6 changed files with 231 additions and 40 deletions
+43 -4
View File
@@ -1398,14 +1398,12 @@
display: none;
}
.table-main--simple {
align-self: stretch;
display: flex;
flex-direction: column;
display: block;
}
.table-main--simple .forecast-simple-wrap {
display: flex;
flex-direction: column;
flex: 1;
height: 420px;
border: 1.5px solid #d4c0a0;
background: #fdf8ee;
}
@@ -1423,6 +1421,10 @@
overflow-y: hidden;
scrollbar-width: thin;
scrollbar-color: #c9b08a transparent;
cursor: grab;
}
.forecast-simple-scroll:active {
cursor: grabbing;
}
.forecast-simple-scroll::-webkit-scrollbar {
height: 4px;
@@ -1540,6 +1542,43 @@
min-height: 60px;
}
.fvt-model-sep {
width: 1px;
height: 18px;
background: #d4c0a0;
margin: 0 4px;
flex-shrink: 0;
}
.fsc-table-btn-wrap {
padding: 10px 16px 12px;
border-top: 1px solid #d4c0a0;
background: #fdf8ee;
flex-shrink: 0;
}
.fsc-table-btn {
display: block;
width: 100%;
padding: 10px 16px;
border: 1.5px solid #a87020;
border-radius: 6px;
background: linear-gradient(to bottom, #d4a030, #b8781a);
font-family: Manrope, sans-serif;
font-size: 14px;
font-weight: 700;
color: #fff;
letter-spacing: 0.03em;
cursor: pointer;
text-align: center;
box-shadow: 0 1px 4px rgba(160,100,20,0.22);
text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.fsc-table-btn:hover {
background: linear-gradient(to bottom, #e8b848, #cc9030);
border-color: #c8922a;
box-shadow: 0 2px 8px rgba(200,146,42,0.28);
}
@media (max-width: 600px) {
.fsc-card {
min-width: 55px;