From edd827b221d64b040d40efbb2423daf5ab917090 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Fri, 22 Jan 2016 00:58:12 +0000 Subject: [PATCH] Sidebox calendar - remove borders, header background, month button --- calendar/js/app.js | 39 ++------------------------ calendar/js/et2_widget_daycol.js | 1 + calendar/templates/default/sidebox.xet | 5 +--- calendar/templates/pixelegg/app.css | 20 +++++++++++++ calendar/templates/pixelegg/app.less | 20 +++++++++++++ 5 files changed, 44 insertions(+), 41 deletions(-) diff --git a/calendar/js/app.js b/calendar/js/app.js index 68b2eb4982..ce6dc71a87 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -3101,36 +3101,15 @@ app.classes.calendar = AppJS.extend( { var datepicker = date_widget.input_date.datepicker("option", { showButtonPanel: false, - onChangeMonthYear: function(year, month, inst) - { - // Update month button label - var month_button = date_widget.getRoot().getWidgetById('header_month'); - if(month_button) - { - var temp_date = new Date(year, month-1, 1,0,0,0); - //temp_date.setUTCMinutes(temp_date.getUTCMinutes() + temp_date.getTimezoneOffset()); - month_button.set_label(egw.lang(date('F',temp_date))); - - // Store current _displayed_ date in date button for clicking - temp_date.setUTCMinutes(temp_date.getUTCMinutes() - temp_date.getTimezoneOffset()); - month_button.btn.attr('data-date', temp_date.toJSON()); - } - }, // Mark holidays beforeShowDay: function (date) { - var tempDate = new Date(); - var today = new Date(tempDate.getFullYear(), tempDate.getUTCMonth(), tempDate.getUTCDate()); var holidays = et2_calendar_view.get_holidays({day_class_holiday: function() {}}, date.getFullYear()); var day_holidays = holidays[''+date.getFullYear() + sprintf("%02d",date.getMonth()+1) + sprintf("%02d",date.getDate())]; var css_class = ''; var tooltip = ''; - if(date.getTime() == today.getTime()) - { - css_class += 'calendar_calToday '; - } if(typeof day_holidays !== 'undefined' && day_holidays.length) { for(var i = 0; i < day_holidays.length; i++) @@ -3190,24 +3169,10 @@ app.classes.calendar = AppJS.extend( app.calendar.update_state({date: date}); } }); - - // Set month button label - var month_button = date_widget.getRoot().getWidgetById('header_month'); - if(month_button) - { - var temp_date = new Date(date_widget.get_value()); - temp_date.setUTCDate(1); - temp_date.setUTCMinutes(temp_date.getUTCMinutes() + temp_date.getTimezoneOffset()); - month_button.set_label(egw.lang(date('F',temp_date))); - - // Store current _displayed_ date in date button for clicking - temp_date.setUTCMinutes(temp_date.getUTCMinutes() - temp_date.getTimezoneOffset()); - month_button.btn.attr('data-date', temp_date.toJSON()); - } - + // Dynamic resize to fill sidebox var preferred_width = $j('#calendar-sidebox_date .ui-datepicker-inline').outerWidth(); - var font_ratio = parseFloat(month_button.btn.css('font-size')) / parseFloat($j('#calendar-sidebox_date .ui-datepicker-inline').css('font-size')); + var font_ratio = parseFloat($j(this.sidebox_et2.getDOMNode()).css('font-size')) / parseFloat($j('#calendar-sidebox_date .ui-datepicker-inline').css('font-size')); $j(window).on('resize.calendar'+date.dom_id, function() { var percent = 1+(($j(date_widget.getDOMNode()).width() - preferred_width) / preferred_width); diff --git a/calendar/js/et2_widget_daycol.js b/calendar/js/et2_widget_daycol.js index 0cd14c19ed..62f7ae6ad2 100644 --- a/calendar/js/et2_widget_daycol.js +++ b/calendar/js/et2_widget_daycol.js @@ -426,6 +426,7 @@ var et2_calendar_daycol = et2_valueWidget.extend([et2_IDetachedDOM, et2_IResizea // Set today class - note +1 when dealing with today, as months in JS are 0-11 var today = new Date(); + today.setUTCMinutes(today.getUTCMinutes() - today.getTimezoneOffset()); this.title.toggleClass("calendar_calToday", this.options.date === ''+today.getUTCFullYear()+ sprintf("%02d",today.getUTCMonth()+1)+ diff --git a/calendar/templates/default/sidebox.xet b/calendar/templates/default/sidebox.xet index 10857bce6a..37a8c36df9 100644 --- a/calendar/templates/default/sidebox.xet +++ b/calendar/templates/default/sidebox.xet @@ -15,15 +15,12 @@ Egroupware