Page 1 of 1

updated dashticz tot latest version

Posted: Monday 27 April 2020 19:29
by pvklink
I updated my dashticz to the latest beta version, and with help from @Hansienl, it now displays !
Last little problem i have is my secpanel.
In my old version my height was correct, and now my secpanel does not fit in my screen..problem with adjusting the height..
Naamloos.jpg
Naamloos.jpg (128.56 KiB) Viewed 466 times
panel.jpg
panel.jpg (137.38 KiB) Viewed 466 times
my old code

Code: Select all

.block_1728 {height: 85px !important;background-color: rgb(59,53,50) !important;}
.block_1728 .title {font-size: 12px !important;color: white;}
.block_1728 .btn {background-color:  white !important;border-color: white !important;font-size: 16px !important;}
.block_1728 .btn.btn-warning {color: white !important;background-color: rgb(119,110,97) !important;border-color: rgb(119,110,97) !important;font-size: 16px !important;}
.block_1728 .btn.btn-danger {color: white !important;background-color: rgb(119,110,97) !important;border-color: rgb(119,110,97) !important;font-size: 16px !important;}

Re: updated dashticz tot latest version

Posted: Saturday 02 May 2020 14:38
by clinkadink
The secpanel height is based on its width to maintain the correct 4:3 aspect ratio. The height is 1.34 x the width. You can set the height and width in the block, or in custom.css:

Code: Select all

[data-id='secpanel'] .dt_content {
  height: 200px!important;
  width: 148px!important;
}

Re: updated dashticz tot latest version

Posted: Saturday 02 May 2020 17:33
by pvklink
@thanks, i will try it!

Re: updated dashticz tot latest version

Posted: Saturday 02 May 2020 18:27
by pvklink
It works thanks!

Re: updated dashticz tot latest version

Posted: Saturday 02 May 2020 18:39
by clinkadink
pvklink wrote: Saturday 02 May 2020 18:27 It works thanks!
Great, thanks for the confirmation :)