XF 1.3 replace css with style properties (do they exist?)

Adam Howard

Well-known member
PHP:
#caltitle {
color: white !important;
}

#caldays span {
color: white !important;
}

#calcurrent {
color: white !important;
background-color: #646464 !important;
}

.navTabs .navTab.PopupClosed .navLink {
color: white !important;
}

.statusEditorCounter {
color: lightgreen !important;
}

.thread_view .threadAlerts dd {
color: lightgreen !important;
}

As far as I can tell these 6 small things are not controlled by an individual style property. But in case I'm overlooking something, if anyone can point me in the right direction it would be very helpful :)
 
If the CSS is not enclosed by property tags like so:
Code:
.someClass
{
    @property "thing";
    color: orange;
    @property "/thing";
}

Then it doesn't have a Style Property.
 
Top Bottom