Files
pretix_cgo/src/pretix/static/pretixpresale/scss/_calendar.scss
2017-08-24 17:13:22 +02:00

56 lines
971 B
SCSS

.table-calendar {
td, th {
width: 14.29%;
}
h3 {
margin: 0;
font-size: 16px;
}
a.event {
display: block;
background: $brand-primary;
color: white;
border-radius: 5px;
padding: 3px 5px;
margin-top: 3px;
font-size: 12px;
&.continued {
background: #888888;
opacity: 0.8;
}
.event-name {
font-weight: bold;
display: block;
}
.event-time, .event-status {
display: block;
}
&:hover {
text-decoration: none;
background: darken($brand-primary, 15%);
}
}
.selected-day {
display: none;
}
}
@media (max-width: $screen-xs-max) {
.table-calendar .day .events {
display: none;
}
.table-calendar td.day.has-events {
background: $brand-primary;
cursor: pointer;
color: white;
}
.table-calendar td.day.has-events:hover {
background: darken($brand-primary, 15%);
}
}
#monthselform .row > div {
margin-bottom: 15px;
}