2014-02-24 19:04:23 +01:00
|
|
|
/**
|
|
|
|
* @provides phui-calendar-day-css
|
|
|
|
*/
|
2015-05-04 01:57:18 +02:00
|
|
|
|
|
|
|
.phui-calendar-day-view {
|
|
|
|
overflow: scroll;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-calendar-day-hour {
|
|
|
|
width: 60px;
|
2015-05-04 03:13:48 +02:00
|
|
|
color: {$lightgreytext};
|
|
|
|
text-align: right;
|
|
|
|
padding: 4px 4px;
|
|
|
|
border-right: 1px solid {$lightgreyborder};
|
2015-05-04 01:57:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-calendar-day-view tr {
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-calendar-day-view td {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2015-05-04 03:13:48 +02:00
|
|
|
.phui-calendar-day-view tr + tr td.phui-calendar-day-events {
|
|
|
|
border-top: 1px solid {$lightgreyborder};
|
|
|
|
}
|
|
|
|
|
2015-05-04 01:57:18 +02:00
|
|
|
.phui-calendar-day-view td div.phui-calendar-day-event {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2015-05-04 19:53:15 +02:00
|
|
|
min-height: 30px;
|
2015-05-04 01:57:18 +02:00
|
|
|
}
|
|
|
|
|
2015-05-04 03:13:48 +02:00
|
|
|
.phui-calendar-day-event-link {
|
|
|
|
padding: 8px;
|
|
|
|
border: 1px solid {$blueborder};
|
|
|
|
background-color: {$bluebackground};
|
2015-05-04 19:53:15 +02:00
|
|
|
margin: 0 4px;
|
2015-05-04 03:13:48 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
color: {$greytext};
|
2015-05-04 01:57:18 +02:00
|
|
|
}
|