- Made icons smaller

- No responce icon changed in questionmark
- Altered function for creation the tooltip, extra option for no space
This commit is contained in:
Rob van Kraanen 2006-12-07 08:55:08 +00:00
parent 279148ccf6
commit c4c6a74885
9 changed files with 10 additions and 3 deletions

View File

@ -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>:'.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 840 B

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 615 B

After

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 851 B

After

Width:  |  Height:  |  Size: 632 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 583 B

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 680 B

After

Width:  |  Height:  |  Size: 558 B