flatsiedatsie / domoticz-aurora-theme

A modern theme for Domoticz, the open source home automation platform.
GNU General Public License v3.0
35 stars 23 forks source link

Favorite icon does not show up with Domoticz 2023.2 #80

Open Patricen1 opened 10 months ago

Patricen1 commented 10 months ago

Even after a clear cache the star icon does not appear using Domoticz last stable version

flatsiedatsie commented 10 months ago

Thanks, but I am no longer supporting this theme. If you create a fix I will be happy to accept it though.

domcars0 commented 9 months ago

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

feelingwalnut commented 7 months ago

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?

nico21311 commented 6 months ago

Thanks you for your solution it worked perfectly