This commit is contained in:
Mateusz Gruszczyński
2026-09-14 16:32:28 +02:00
parent c3fbc5ccc6
commit 021cbddba5
68 changed files with 7780 additions and 202 deletions
+142 -1
View File
@@ -2805,7 +2805,7 @@ legend {
.settings-mode-tabs {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 7px;
margin: 0 0 14px;
padding: 6px;
@@ -8906,6 +8906,78 @@ body.flow-editor-open {
overflow-wrap: anywhere;
}
.manual-device-title-row {
display: flex;
align-items: center;
gap: 8px;
min-width: 0;
}
.manual-device-title-row h3 {
min-width: 0;
margin-bottom: 0;
}
.manual-device-status {
display: flex;
align-items: center;
gap: 7px;
min-height: 18px;
margin-top: 5px !important;
max-width: 100%;
}
.manual-device-status .status {
flex: 0 0 auto;
}
.manual-device-status-error {
min-width: 0;
overflow: hidden;
color: var(--muted);
text-overflow: ellipsis;
white-space: nowrap;
}
.manual-device-status-error::before {
content: "·";
margin-right: 7px;
}
.manual-device-status-pending {
flex: 0 0 auto;
color: var(--warning);
font-weight: 650;
}
.cloud-command-pending .power-button,
.cloud-command-pending .quick-control-row button.active,
.cloud-command-pending .target-temp {
animation: cloud-command-pulse .85s ease-in-out infinite alternate;
}
.manual-device-status-pending::before {
content: "";
display: inline-block;
width: 7px;
height: 7px;
margin-right: 6px;
border-radius: 50%;
background: currentColor;
animation: cloud-command-dot .7s ease-in-out infinite alternate;
}
@keyframes cloud-command-pulse {
from { opacity: .72; }
to { opacity: 1; }
}
@keyframes cloud-command-dot {
from { transform: scale(.65); opacity: .45; }
to { transform: scale(1); opacity: 1; }
}
.config-check-result {
padding: 10px 12px;
border: 1px solid var(--border);
@@ -9353,3 +9425,72 @@ body.flow-editor-open {
white-space: normal;
}
}
/* GREE Cloud runtime summary */
.cloud-runtime-summary {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
}
.cloud-runtime-summary > div {
display: grid;
gap: 4px;
min-width: 0;
padding: 10px 11px;
border: 1px solid var(--line);
border-radius: 11px;
background: var(--surface-muted);
}
.cloud-runtime-summary span {
color: var(--muted);
font-size: 9px;
font-weight: 750;
text-transform: uppercase;
letter-spacing: .05em;
}
.cloud-runtime-summary strong {
overflow: hidden;
color: var(--text-soft);
font-size: 12px;
text-overflow: ellipsis;
white-space: nowrap;
}
.cloud-account-meta {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 7px 14px;
color: var(--muted);
}
.cloud-account-meta code,
.cloud-account-meta strong {
color: var(--text-soft);
}
.debug-line.source-cloud {
border-color: color-mix(in srgb, var(--warning) 30%, var(--line));
}
.debug-line.source-cloud b {
color: var(--warning);
}
.debug-line.source-mqtt {
border-color: color-mix(in srgb, var(--purple) 30%, var(--line));
}
.debug-line.source-mqtt b {
color: var(--purple);
}
@media (max-width: 760px) {
.cloud-runtime-summary {
grid-template-columns: 1fr;
}
}