- 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)
|
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
|
// as we only deal with percentual widht, we consider only the full dayview (1 colum) as NOT small
|
||||||
$small = $this->view != 'day' || $width < 50;
|
$small = $this->view != 'day' || $width < 50;
|
||||||
@ -1165,11 +1165,18 @@ class uiviews extends uical
|
|||||||
'>'."\n".$ie_fix.$html.$indent."</div>\n";
|
'>'."\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 (is_array($content))
|
||||||
{
|
{
|
||||||
$content = implode($one_per_line ? ",\n" : ', ',$content);
|
if($space)
|
||||||
|
{
|
||||||
|
$content = implode($one_per_line ? ",\n" : ', ',$content);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$content = implode($one_per_line ? "\n" : ', ',$content);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!empty($content))
|
if (!empty($content))
|
||||||
{
|
{
|
||||||
|
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 |