newism / nsm.addon_updater.ee_addon

Other
21 stars 3 forks source link

CSS missing for styling badge notifications #3

Open scottboms opened 13 years ago

scottboms commented 13 years ago

It looks like somewhere between the 1.0 and 1.1.x branches, the CSS needed to style the number of available updates badge got dropped from the accessory_tab.css file. In looking back through the previous commits, it looks like the following needs to be added back:

#accessoryTabs .nsm_addon_updater .accessoryHandle{display:none;}
#accessoryTabs .nsm_addon_updater span.badge {
    background:rgb(231, 23, 75);
    _background:-webkit-gradient(radial, 50% 50%, 0, 50% 50%, 9, from(#ed1c24), to(#ba161c));
    border: 1px solid #b5123b;
    border-radius: 30px;
    font-weight: bold
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    padding: 4px;
    position: absolute;
    top: -12px;
    right: -20px;
    min-width: 10px;
    text-shadow: 0 -1px 0 #b5123b;
}