Page 4 of 4

Re: Dashticz v3.7.6 beta

Posted: Saturday 03 April 2021 19:45
by Lokonli
madpatrick wrote: Friday 02 April 2021 19:00 It looks it is only on my Android tablet.
On a PC or iPad it looks ok

Could it be appearing on smaller screens only ?

I think i found were it did go wrong

Going back to commit

Code: Select all

git checkout a14782748c1c430e87c32f3c675162ddd30938e2
is getting the correct sizes of the icons back

So after update it goes wrong

Code: Select all

commit 2515b05c699130b5959d7b376c782a145bfa0bb2
Author: lokonli
Date:   Mon Mar 15 22:14:04 2021 +0100
There was an interaction with the dial icons, so for that reason I had to make this change.
What you see is the intended behaviour: On smaller screens the icons become smaller.

Do you maybe redefine icon sizes in custom.css?

To enforce a certain icon size for all screen widths, add the following to custom.css:

Code: Select all

.mh .fas,
  .mh .far,
  .mh .fab,
  .mh .wi {
    font-size: 20px !important;
  }
or to set icon width for smaller screens only:

Code: Select all

@media (max-width: 975px) {
.mh .fas,
  .mh .far,
  .mh .fab,
  .mh .wi {
    font-size: 20px !important;
  }
}

Re: Dashticz v3.7.6 beta

Posted: Sunday 04 April 2021 9:03
by madpatrick
Lokonli wrote: Saturday 03 April 2021 19:45 Do you maybe redefine icon sizes in custom.css?
Hi Lokonli,

Thanks for your reply.
I have indeed forced larger icons in custom.css, because they are too small default.

The change set the icons bigger, so that is working.
Only the defualt icons in the dials still remains small
How can i change this ?
Is it possible to make a change that the icons are bigger for small screens in default ?

Re: Dashticz v3.7.6 beta

Posted: Saturday 10 April 2021 14:00
by Lokonli
Chris12 wrote: Wednesday 17 March 2021 11:29 @lokonli, another question (or maybe a feature request).

Is is possible that different times can be configured per screen?
I've got 6 screens which currently rotates every 30secs.
But some screens contain more info then others (like news overview etc.) which I would like to be displayed for example 45secs. and other screens (showing system info of for example pihole/dns/server etc.) can be shown for 15secs.

Is this already configurable in dashticz? I could not see a 'timer' parameter or something mentioned in the docs.
This has been implemented in v3.8.0 beta, via screen parameter auto_slide_page

Can you test?

Re: Dashticz v3.7.6 beta

Posted: Sunday 11 April 2021 16:50
by madpatrick
madpatrick wrote: Sunday 04 April 2021 9:03 The change set the icons bigger, so that is working.
Only the defualt icons in the dials still remains small
How can i change this ?
Is it possible to make a change that the icons are bigger for small screens in default ?
Solved the large icon for the dial switch as follows

Code: Select all

.fas.fa-power-off					{font-size:34px !important}