diff --git a/tasmota/xdrv_23_zigbee_A_impl.ino b/tasmota/xdrv_23_zigbee_A_impl.ino
index 498e17c85..7bacb43d9 100644
--- a/tasmota/xdrv_23_zigbee_A_impl.ino
+++ b/tasmota/xdrv_23_zigbee_A_impl.ino
@@ -1357,6 +1357,7 @@ void ZigbeeShow(bool json)
".ztd td:not(:first-child){width:20px;font-size:70%%}"
".ztd td:last-child{width:45px}"
".ztd .bt{margin-right:10px;}" // Margin right should be half of the not-first width
+ ".htr{line-height:20px}"
// Lighting
".bx{height:14px;width:14px;display:inline-block;border:1px solid currentColor;background-color:var(--cl,#fff)}"
// Signal Strength Indicator
@@ -1406,7 +1407,7 @@ void ZigbeeShow(bool json)
}
WSContentSend_PD(PSTR(
- "
"
"%s | " // name
"%s | " // sbatt (Battery Indicator)
"" // slqi
@@ -1435,7 +1436,7 @@ void ZigbeeShow(bool json)
bool pressure_ok = device.validPressure();
if (temperature_ok || humidity_ok || pressure_ok) {
- WSContentSend_P(PSTR(" |
┆"));
+ WSContentSend_P(PSTR(" |
┆"));
if (temperature_ok) {
char buf[12];
dtostrf(device.temperature / 10.0f, 3, 1, buf);
@@ -1456,7 +1457,7 @@ void ZigbeeShow(bool json)
if (power_ok) {
uint8_t channels = device.getLightChannels();
if (0xFF == channels) { channels = 5; } // if number of channel is unknown, display all known attributes
- WSContentSend_P(PSTR(" |
┆ %s"), device.getPower() ? PSTR(D_ON) : PSTR(D_OFF));
+ WSContentSend_P(PSTR(" |
┆ %s"), device.getPower() ? PSTR(D_ON) : PSTR(D_OFF));
if (device.validDimmer() && (channels >= 1)) {
WSContentSend_P(PSTR(" 🔅 %d%%"), changeUIntScale(device.dimmer,0,254,0,100));
}
|