domoticz-aurora-theme icon indicating copy to clipboard operation
domoticz-aurora-theme copied to clipboard

Favorite icon does not show up with Domoticz 2023.2

Open Patricen1 opened this issue 1 year ago • 4 comments

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

Patricen1 avatar Aug 14 '23 17:08 Patricen1

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

flatsiedatsie avatar Sep 05 '23 08:09 flatsiedatsie

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

domcars0 avatar Sep 20 '23 17:09 domcars0

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?

feelingwalnut avatar Nov 14 '23 05:11 feelingwalnut

Thanks you for your solution it worked perfectly

nico21311 avatar Dec 31 '23 06:12 nico21311