codyhouse / schedule-template

A simple template that lets you display events on a timeline, as well as organize them in groups (week days, conference rooms etc…)
https://codyhouse.co
185 stars 102 forks source link

Maximum of events? #2

Closed supertom01 closed 6 years ago

supertom01 commented 6 years ago

I've added several events to the calendar. But after 10 events the css code will fail to add a background collor to elevent event. Any ideas how to fix this???


.cd-schedule [data-event="uitval"] .header-bg {
    background: red;
}
.cd-schedule .single-event[data-event="uitval"]:hover {
    background: lighten(red, 5%);
}```

the corresponding HTML:

```<li class="single-event" data-start="14:00" data-end="14:50" data-content="event-engels" data-event="uitval">
                        <a href="#0">
                            <em class="event-name">Engels</em>
                            <em class="event-date"> (L-c2)</em>
                        </a>
                    </li>```

Nevermind, already found out. Typing errors... whoops