XF 1.5 tag.css content

RichardKYA

Well-known member
Hello guys,

I updated to 1.5 yesterday evening and my tag.css seems to be pretty empty and obviously most of the tag styling isn't there because of it, can someone tell what the correct contents is meant to be? I haven't edited the css template at all yet and here's what I have...

Code:
.tagCloud
{
   overflow: hidden;
}

.tagCloud li
{
   display: inline-block;
   margin-right: 8px;
}

.tagCloud li:last-child
{
   margin-right: 0;
}

.tagCloud .tagCloudTag1 { font-size: 100%; color: @primaryLightish; }
.tagCloud .tagCloudTag2 { font-size: 100%; }
.tagCloud .tagCloudTag3 { font-size: 125%; }
.tagCloud .tagCloudTag4 { font-size: 150%; }
.tagCloud .tagCloudTag5 { font-size: 175%; }
.tagCloud .tagCloudTag6 { font-size: 200%; }
.tagCloud .tagCloudTag7 { font-size: 225%; color: @primaryDark; }

...is there meant to be more?

I done a file health check and everything appears to be fine, so it's bit weird to me

Thank you :)
 
Ah Ok, just found the cause of confusion, all the tag classes I've been looking for are in the public.css, I couldn't have merged it correctly because they're not in my custom style public.css so obviously the default styling wasn't being applied and my searches were returning empty
 
Top Bottom