major refactor, numenculature change

remove mentions to "door" status, to space
This commit is contained in:
2025-06-02 00:17:55 +01:00
parent f0f2814d35
commit 42345c47b9
3 changed files with 43 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
/* door-status.css styles the indicator as a pillshaped button */
/* space-status.css styles the indicator as a pillshaped button */
.door-status-indicator {
.space-status-indicator {
display:inline-flex;
align-items:center;
gap:0.4em;
@@ -15,20 +15,20 @@
}
/* Open = soft green background + dark green text */
.door-status-indicator.open {
.space-status-indicator.open {
background:#e7f9ec;
color:#1e7a34;
}
/* Closed = soft red background + dark red text */
.door-status-indicator.closed {
.space-status-indicator.closed {
background:#fdeeee;
color:#c03c3c;
}
/* (Optional) slight hover effect */
.door-status-indicator:hover,
.door-status-indicator:focus {
.space-status-indicator:hover,
.space-status-indicator:focus {
filter:brightness(1.05);
outline:none;
}