ElkArte Community

Title: Static Board Folder Icons
Post by: Auctor Lucan on April 15, 2017, 06:05:03 pm
Hi there!

Regardless if there are no new posts on a board or not, the folder icon in that hails from the Silence theme is static. Check the image.

I would like for my folders icons to show whether or not the board has any new posts to look at. :)

Also, the folders in the key works too. No need to use the "read" version of the lighter blue folders.

Thanks in advance to find this small bug? :)
 
Best,

Auctor Lucan
Title: Re: Static Board Folder Icons
Post by: emanuele on April 16, 2017, 06:05:27 am
Little bug in the theme.
/me blames @Spuds :P
have a look in index_dark.css:
Code: [Select]
.category_boards .board_icon, .board_key:before {
background: url(../../images/_dark/board_icons.png) no-repeat;
}
should become:
Code: [Select]
.category_boards .board_icon, .board_key:before {
background-image: url(../../images/_dark/board_icons.png);
background-repeat: no-repeat;
}
Title: Re: Static Board Folder Icons
Post by: Auctor Lucan on April 16, 2017, 06:13:59 am
Awesome, thanks a lot!