This commit is contained in:
Mateusz Gruszczyński
2026-09-16 14:24:40 +02:00
parent d0ae3d0f6a
commit 3f9acb1675
28 changed files with 726 additions and 127 deletions
+79
View File
@@ -9894,3 +9894,82 @@ select.select-native-proxy[aria-invalid="true"] + .custom-select .custom-select-
.flow-fit-button-icon { display: none; }
.flow-fit-button-label { display: inline; }
}
.ha-supervisor-status {
display: grid;
gap: 4px;
padding: 12px 14px;
border: 1px solid var(--line);
border-left-width: 4px;
border-radius: 12px;
background: var(--surface-2);
}
.ha-supervisor-status strong { font-size: .92rem; }
.ha-supervisor-status span { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.ha-supervisor-status.success { border-left-color: var(--teal); }
.ha-supervisor-status.warning { border-left-color: var(--accent); }
.ha-supervisor-status.error { border-left-color: var(--danger); }
.ha-entity-picker {
display: grid;
gap: 6px;
min-width: 0;
}
.ha-entity-picker > label { margin: 0; }
.ha-entity-picker > .field-note { margin: 0; }
.ha-entity-results {
display: grid;
gap: 4px;
max-height: 260px;
overflow: auto;
padding: 5px;
border: 1px solid var(--line);
border-radius: 10px;
background: var(--surface);
}
.ha-entity-option {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 8px 10px;
border: 0;
border-radius: 8px;
background: transparent;
color: inherit;
text-align: left;
cursor: pointer;
}
.ha-entity-option:hover,
.ha-entity-option:focus-visible {
background: var(--surface-2);
}
.ha-entity-option > span {
display: grid;
gap: 2px;
min-width: 0;
}
.ha-entity-option strong,
.ha-entity-option code {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ha-entity-option code,
.ha-entity-option small,
.ha-entity-empty {
color: var(--muted);
font-size: .76rem;
}
.ha-entity-option small { flex: 0 0 auto; }
.ha-entity-empty { padding: 9px 10px; }