Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

updater icons not showing

edited May 2007 in Vanilla 1.0 Help
i ran a few searches, couldn't find what i was looking for, so here it is: i remember a while back there was a discussion pertaining to the update checker icons. long and short, i'm not using the default vanilla style and thus i don't see the icons as the update checker does its thing. i remember there was a fix posted (copying/moving) some files, but i can't find it, and i'm wondering what if anybody remembered this discussion/the fix.

thanks in advance!

Comments

  • lechlech
    edited May 2007
    Lines ~1070 and beyond within the default Vanilla.css the classes and attributes are all titled "Update" accordingly. If your style is missing these to fit into your theme it would be the reason why you're not seeing them in the first place.

    /* Update Check form */ .UpdateOld .Name, .UpdateGood .Name, .UpdateUnknown .Name, .UpdateChecking .Name { padding: 0px 0px 4px 23px !important; } .UpdateOld .Details, .UpdateGood .Details, .UpdateUnknown .Details, .UpdateChecking .Details { font-weight: normal; } .UpdateOld, .UpdateUnknown { background: #FFFFCC; } .UpdateGood { background: #FFFB97; } .UpdateChecking { background: #FFFEEC; } .UpdateOld .Name { background: url(ico.alert.gif) no-repeat top left; } .UpdateGood .Name { background: url(ico.check.gif) no-repeat top left; } .UpdateUnknown .Name { background: url(ico.unknown.gif) no-repeat top left; } .UpdateChecking .Name { background: url(progress.gif) no-repeat center left; }

    You'll obviously want to tweak the colors and settings to match your theme nicely. If all else fails, check the source to ensure you've covered all the necessary bases.
  • oi, this is it. thanks lech!
This discussion has been closed.