mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Supress tooltip on holidays shown as events
This commit is contained in:
parent
e5f35bedae
commit
27ef0c20a9
@ -434,7 +434,8 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
|
||||
end: this.options.date,
|
||||
owner: this.options.owner,
|
||||
participants: this.options.owner,
|
||||
app: 'calendar'
|
||||
app: 'calendar',
|
||||
class: 'calendar_calBirthday'
|
||||
},
|
||||
readonly: true,
|
||||
class: 'calendar_calBirthday'
|
||||
@ -469,7 +470,8 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
|
||||
end: this.options.date,
|
||||
owner: this.options.owner,
|
||||
participants: this.options.owner,
|
||||
app: 'calendar'
|
||||
app: 'calendar',
|
||||
class: 'calendar_calBirthday'
|
||||
},
|
||||
readonly: true,
|
||||
class: 'calendar_calHoliday'
|
||||
|
@ -494,7 +494,8 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
|
||||
cat.destroy();
|
||||
}
|
||||
|
||||
return '<div class="calendar_calEventTooltip ' + this._status_class() + '" style="border-color: '+border+'; background-color: '+bg_color+';">'+
|
||||
return '<div class="calendar_calEventTooltip ' + this._status_class() +' '+ this.options.class +
|
||||
'" style="border-color: '+border+'; background-color: '+bg_color+';">'+
|
||||
'<div class="calendar_calEventHeaderSmall">'+
|
||||
'<font style="color:'+header_color+'">'+timespan+'</font>'+
|
||||
this.icons[0].outerHTML+
|
||||
|
@ -241,6 +241,10 @@ e.g. the div with class calendar_calTimeGrid is generated by the timeGridWidget
|
||||
.calendar_calBirthday,.calendar_calBirthday a{
|
||||
color: #626161;
|
||||
}
|
||||
/* Supress tooltips on holidays shown as events */
|
||||
.calendar_calEventTooltip.calendar_calBirthday, .calendar_calEventTooltip.calendar_calHoliday {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* timeGridWidget, contains timeRow's and dayCol's
|
||||
*/
|
||||
|
@ -261,6 +261,11 @@ e.g. the div with class calendar_calTimeGrid is generated by the timeGridWidget
|
||||
.calendar_calBirthday a {
|
||||
color: #626161;
|
||||
}
|
||||
/* Supress tooltips on holidays shown as events */
|
||||
.calendar_calEventTooltip.calendar_calBirthday,
|
||||
.calendar_calEventTooltip.calendar_calHoliday {
|
||||
display: none;
|
||||
}
|
||||
/* timeGridWidget, contains timeRow's and dayCol's
|
||||
*/
|
||||
.calendar_calTimeGrid {
|
||||
@ -1148,6 +1153,7 @@ Hide subsequent headers in week view with non-consolidated owners
|
||||
.calendar_eventRowsFiller {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
height: 93%;
|
||||
background-color: white;
|
||||
border: 1px dashed gray;
|
||||
@ -1419,6 +1425,10 @@ input#calendar-edit_location {
|
||||
background-image: linear-gradient(top, #828282, #828282) !important;
|
||||
background-repeat: repeat-x !important;
|
||||
}
|
||||
#calendar-list {
|
||||
/* Keeps the scrollbar in the window in chrome */
|
||||
margin-right: 10px;
|
||||
}
|
||||
#calendar_sidebox_content .egw_fw_ui_category_content {
|
||||
padding-left: 0px !important;
|
||||
}
|
||||
@ -2587,6 +2597,10 @@ div#calendar-container div.calendar table tbody tr.rowhilite td {
|
||||
}
|
||||
#calendar-sidebox_date .ui-datepicker-year {
|
||||
padding-right: 5px !important;
|
||||
min-width: 65px;
|
||||
}
|
||||
#calendar-sidebox_date .ui-datepicker-month {
|
||||
min-width: 60px;
|
||||
}
|
||||
#calendar-sidebox_date .ui-datepicker-header a span {
|
||||
width: 20px;
|
||||
|
@ -249,6 +249,11 @@ e.g. the div with class calendar_calTimeGrid is generated by the timeGridWidget
|
||||
.calendar_calBirthday a {
|
||||
color: #626161;
|
||||
}
|
||||
/* Supress tooltips on holidays shown as events */
|
||||
.calendar_calEventTooltip.calendar_calBirthday,
|
||||
.calendar_calEventTooltip.calendar_calHoliday {
|
||||
display: none;
|
||||
}
|
||||
/* timeGridWidget, contains timeRow's and dayCol's
|
||||
*/
|
||||
.calendar_calTimeGrid {
|
||||
|
Loading…
Reference in New Issue
Block a user