-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpool_webserver.css
More file actions
40 lines (35 loc) · 1.22 KB
/
Copy pathpool_webserver.css
File metadata and controls
40 lines (35 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Deine bestehenden Grid-Fixes */
.grid { display: flex !important; flex-direction: column !important; }
#entities { width: 100% !important; max-width: 100% !important; }
#logs {
width: 100% !important;
max-width: 100% !important;
margin-left: 0 !important;
margin-top: 2rem !important;
background-color: #1e1e1e !important;
}
/* --- Der harte Fix für die Log-Zeilen v3 --- */
/* 1. Den gesamten Log-Container auf Monospace setzen */
#logs, .log-row, .log-message, esp-log {
font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
font-size: 13px !important;
white-space: pre !important;
}
/* 2. Sicherstellen, dass Zeitstempel und Level NICHT umbrechen */
.log-row {
display: flex !important;
flex-direction: row !important;
align-items: flex-start !important;
gap: 5px !important;
border-bottom: 1px solid #333 !important; /* Optionale Trennlinie pro Log */
}
/* 3. Die Nachricht selbst darf keinen Zeilenumbruch erzwingen */
.log-message {
display: inline-block !important;
white-space: pre !important;
}
/* 4. Verhindern, dass ESPHome die Zeitstempel in eine eigene Zeile wirft */
.log-time, .log-level, .log-tag {
display: inline-block !important;
min-width: fit-content !important;
}