Style events depending on user participation state

Also use one-time binding for non-ghost events.
This commit is contained in:
Francis Lachapelle
2016-04-22 10:55:26 -04:00
parent 0bc7e5f5bd
commit 1a30df03c8
7 changed files with 125 additions and 63 deletions
@@ -290,6 +290,23 @@ $quarter_height: 10px;
}
}
// User participation status is "needs action"
&--needs-action {
border-width: 1px;
border-style: dashed;
opacity: 0.7;
}
// User participation status is "tentative"
&--tentative {
opacity: 0.7;
}
// User has declined the invitation
&--declined {
opacity: 0.4;
}
.eventInside {
overflow: hidden;
}