1
0
Fork 0
forked from 0x2620/oxjs

calendar improvements (api, css, utc)

This commit is contained in:
rolux 2011-05-25 11:22:16 +02:00
commit b18500d133
5 changed files with 253 additions and 194 deletions

View file

@ -133,7 +133,7 @@ Calendar
position: absolute;
}
.OxCalendar .OxDate {
.OxCalendar .OxEvent {
position: absolute;
height: 16px;
text-overflow: ellipsis;
@ -141,9 +141,15 @@ Calendar
white-space: nowrap;
cursor: pointer;
}
.OxCalendar .OxLine > .OxDate {
background: -moz-linear-gradient(top, rgba(255, 64, 64, 0.75), rgba(255, 0, 0, 0.75));
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 32, 32, 1)), to(rgba(224, 0, 0, 1)));
.OxCalendar .OxLine > .OxEvent {
border-radius: 2px;
background: -moz-linear-gradient(top, rgba(255, 32, 32, 0.9), rgba(224, 0, 0, 0.9));
background: -webkit-linear-gradient(top, rgba(255, 32, 32, 0.9), rgba(224, 0, 0, 0.9));
color: rgb(255, 255, 255);
}
.OxCalendar .OxLine > .OxEvent.OxSelected {
background: -moz-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(112, 112, 224, 0.9));
background: -webkit-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(112, 112, 224, 0.9));
}
.OxCalendar .OxTimeline {
@ -152,7 +158,7 @@ Calendar
//overflow: hidden;
}
.OxCalendar .OxTimeline .OxDate {
.OxCalendar .OxTimeline .OxEvent {
position: absolute;
border-radius: 0;
cursor: ew-resize;