#254:Tooltip

This commit is contained in:
Martin Müller 2014-05-11 10:06:52 +02:00
parent fa83f13a40
commit 5bc19be5a3
2 changed files with 13 additions and 6 deletions

View File

@ -24,14 +24,14 @@ if($isLoggedin){
</style>
<ul class="list-unstyled">
<li<?php if(isset($MENU_PROFIL)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-profil.png'),array('controller'=>'user','action'=>'profil'),array('title'=>__('dreamjob.my.profil'))); ?></li>
<li<?php if(isset($MENU_PROFIL)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-profil.png'),array('controller'=>'user','action'=>'profil'),array('title'=>__('dreamjob.my.profil'),'escape'=>false)); ?></li>
<?php if(!empty($COMPANY)){ ?>
<li<?php if(isset($MENU_OPENING)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-job.png'),array('controller'=>'job','action'=>'openingList'),array('title'=>__('dreamjob.my.opening'))); ?></li>
<li<?php if(isset($MENU_OPENING)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-job.png'),array('controller'=>'job','action'=>'openingList'),array('title'=>__('dreamjob.my.opening'),'escape'=>false)); ?></li>
<?php }elseif(!empty($WORKER)){ ?>
<li<?php if(isset($MENU_APPLICATION)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-job.png'),array('controller'=>'job','action'=>'applicationList'),array('title'=>__('dreamjob.my.application'))); ?></li>
<li<?php if(isset($MENU_FAVORITY)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-favority.png'),array('controller'=>'job','action'=>'favorite'),array('title'=>__('dreamjob.my.favority'))); ?></li>
<li<?php if(isset($MENU_APPLICATION)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-job.png'),array('controller'=>'job','action'=>'applicationList'),array('title'=>__('dreamjob.my.application'),'escape'=>false)); ?></li>
<li<?php if(isset($MENU_FAVORITY)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-favority.png'),array('controller'=>'job','action'=>'favorite'),array('title'=>__('dreamjob.my.favority'),'escape'=>false)); ?></li>
<?php } ?>
<li<?php if(isset($MENU_SETTINGS)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-settings.png'),array('controller'=>'user','action'=>'settings_account'),array('title'=>__('dreamjob.my.settings'))); ?></li>
<li<?php if(isset($MENU_SETTINGS)){?> class="active"<?php } ?>><?=$this->Html->link($this->Html->image('bar-settings.png'),array('controller'=>'user','action'=>'settings_account'),array('title'=>__('dreamjob.my.settings'),'escape'=>false)); ?></li>
</ul>
<?php
}elseif(!empty($MENU_START)){

View File

@ -21,7 +21,14 @@ a:hover{
textarea {
resize: none;
}
.ui-tooltip {
background-color:#FCF8E3;
width:auto;
display:inline-block;
color:black;
border-radius: 2px;
padding:2px;
}
/*
* Default
*/