domoticz-aurora-theme
domoticz-aurora-theme copied to clipboard
Favorite icon does not show up with Domoticz 2023.2
Even after a clear cache the star icon does not appear using Domoticz last stable version
Thanks, but I am no longer supporting this theme. If you create a fix I will be happy to accept it though.
2 possibilities : a) change the domoticz styles.css file (domoticz/www/css/style.css) and comment out the overflow-x css value
table td.options {
white-space: nowrap;
/* overflow-x: hidden !important; */
}
b) If you do not want to modify the domoticz files you can change the custom.css aurora file
.item .options img.favorite, /* the future version */
.span3 td:last-of-type:not(.status) .lcursor,
.span4 td:last-of-type:not(.status) .lcursor{
position: relative;
top: 0px; /* -29 px; */
left: 330px; /* 13px; */
border-radius: 5px;
}
but this will move the favorite icon
try adding table td.options { overflow-x: visible !important; } toward the end of aurora custom.css and see if it overrides the domoticz style.css?
Thanks you for your solution it worked perfectly