fix calendar css
This commit is contained in:
parent
687db7d957
commit
ce2d568cd4
2 changed files with 4 additions and 2 deletions
|
@ -587,7 +587,7 @@ Ox.Calendar = function(options, self) {
|
|||
event.rangeText = Ox.formatDateRange(event.start, event.end, true);
|
||||
event.durationText = Ox.formatDateRangeDuration(event.start, event.end, true);
|
||||
if (event.current) {
|
||||
event.rangeText = event.rangeText.split(' - ').shift() + ' - now';
|
||||
event.rangeText = event.rangeText.split(' - ').shift() + ' - today';
|
||||
}
|
||||
return event;
|
||||
}
|
||||
|
@ -700,7 +700,7 @@ Ox.Calendar = function(options, self) {
|
|||
});
|
||||
self.contentHeight = Math.max(
|
||||
self.lineEvents.length * 16,
|
||||
self.options.height - 72 // 24 + 16 + 16 + 16
|
||||
self.options.height // - 72 // 24 + 16 + 16 + 16
|
||||
);
|
||||
self.$content.css({height: self.contentHeight + 'px'});
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* fixme: it wouldn't hurt if focus was blue */
|
||||
|
||||
body.OxThemeModern {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue