Fix calendar printing after refactoring and skin update
This commit is contained in:
parent
ea5a2fae4c
commit
a22f1764d8
5 changed files with 7 additions and 4 deletions
|
@ -1476,6 +1476,7 @@ class calendar extends rcube_plugin
|
||||||
|
|
||||||
// Add JS files to the page header
|
// Add JS files to the page header
|
||||||
$this->include_script('print.js');
|
$this->include_script('print.js');
|
||||||
|
$this->include_script('lib/js/fullcalendar.js');
|
||||||
|
|
||||||
$this->register_handler('plugin.calendar_css', array($this->ui, 'calendar_css'));
|
$this->register_handler('plugin.calendar_css', array($this->ui, 'calendar_css'));
|
||||||
$this->register_handler('plugin.calendar_list', array($this->ui, 'calendar_list'));
|
$this->register_handler('plugin.calendar_list', array($this->ui, 'calendar_list'));
|
||||||
|
|
|
@ -32,7 +32,7 @@ window.rcmail && rcmail.addEventListener('init', function(evt) {
|
||||||
|
|
||||||
var rc_loading;
|
var rc_loading;
|
||||||
var showdesc = true;
|
var showdesc = true;
|
||||||
var settings = rcmail.env.calendar_settings;
|
var settings = $.extend(rcmail.env.calendar_settings, rcmail.env.libcal_settings);
|
||||||
|
|
||||||
// create list of event sources AKA calendars
|
// create list of event sources AKA calendars
|
||||||
var src, event_sources = [];
|
var src, event_sources = [];
|
||||||
|
|
|
@ -67,7 +67,8 @@ body, td, th, div, p, h3, select, input, textarea {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#calendarlist input {
|
#calendarlist input,
|
||||||
|
#calendarlist .handle {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1011,7 +1011,7 @@ a.dropdown-link:after {
|
||||||
-moz-box-shadow: 0 0 2px #999;
|
-moz-box-shadow: 0 0 2px #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-content {
|
.calendarmain .fc-content {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
top: 40px;
|
top: 40px;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
|
@ -67,7 +67,8 @@ body, td, th, div, p, h3, select, input, textarea {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#calendarlist input {
|
#calendarlist input,
|
||||||
|
#calendarlist .handle {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue