Page 1 of 1

how to style thermostat setpoint

Posted: Wednesday 10 July 2019 8:41
by pvklink
Hi,

how do i make the temp 15.5 smaller?
Naamloos.png
Naamloos.png (23.36 KiB) Viewed 1033 times

Re: how to style thermostat setpoint

Posted: Saturday 13 July 2019 10:06
by pvklink
nobody?

Re: how to style thermostat setpoint

Posted: Thursday 18 July 2019 17:47
by Lokonli
pvklink wrote: Saturday 13 July 2019 10:06nobody?
Right-click on the number, and then on 'Inspect'.

Then on the elements tab you can see which classes are applied to the block.

For a thermostat block it is ao input-number.

To change the size, add the following to custom.css:

Code: Select all

.input-number {
    font-size: 12px !important
}

Re: how to style thermostat setpoint

Posted: Thursday 01 August 2019 22:49
by pvklink
when i do an inspect i get this...
no idea if this is what you wanted to see...
Naamloos.png
Naamloos.png (24.21 KiB) Viewed 879 times

Re: how to style thermostat setpoint

Posted: Monday 05 August 2019 11:45
by pvklink
yes, thanks lokonli..it works...

.input-number {
font-size: 12px !important
}

Re: how to style thermostat setpoint

Posted: Monday 05 August 2019 14:37
by Lokonli
pvklink wrote: Monday 05 August 2019 11:45 yes, thanks lokonli..it works...

.input-number {
font-size: 12px !important
}
Good! Thanks for the feedback.