- Made icons smaller
- No responce icon changed in questionmark - Altered function for creation the tooltip, extra option for no space
@ -1060,7 +1060,7 @@ class uiviews extends uical
|
||||
}
|
||||
foreach($part_array as $part_group => $participant)
|
||||
{
|
||||
$participants .= $this->add_nonempty($participant,$part_group,True);
|
||||
$participants .= $this->add_nonempty($participant,$part_group,True,False);
|
||||
}
|
||||
// as we only deal with percentual widht, we consider only the full dayview (1 colum) as NOT small
|
||||
$small = $this->view != 'day' || $width < 50;
|
||||
@ -1165,12 +1165,19 @@ class uiviews extends uical
|
||||
'>'."\n".$ie_fix.$html.$indent."</div>\n";
|
||||
}
|
||||
|
||||
function add_nonempty($content,$label,$one_per_line=False)
|
||||
function add_nonempty($content,$label,$one_per_line=False,$space = True)
|
||||
{
|
||||
if (is_array($content))
|
||||
{
|
||||
if($space)
|
||||
{
|
||||
$content = implode($one_per_line ? ",\n" : ', ',$content);
|
||||
}
|
||||
else
|
||||
{
|
||||
$content = implode($one_per_line ? "\n" : ', ',$content);
|
||||
}
|
||||
}
|
||||
if (!empty($content))
|
||||
{
|
||||
return '<span class="calEventLabel">'.$label.'</span>:'.
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 840 B After Width: | Height: | Size: 694 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 634 B After Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 530 B |
Before Width: | Height: | Size: 851 B After Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 583 B After Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 558 B |