#254:Tooltip
This commit is contained in:
parent
fa83f13a40
commit
5bc19be5a3
|
@ -24,14 +24,14 @@ if($isLoggedin){
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<ul class="list-unstyled">
|
<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)){ ?>
|
<?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)){ ?>
|
<?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_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'))); ?></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 } ?>
|
<?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>
|
</ul>
|
||||||
<?php
|
<?php
|
||||||
}elseif(!empty($MENU_START)){
|
}elseif(!empty($MENU_START)){
|
||||||
|
|
|
@ -21,7 +21,14 @@ a:hover{
|
||||||
textarea {
|
textarea {
|
||||||
resize: none;
|
resize: none;
|
||||||
}
|
}
|
||||||
|
.ui-tooltip {
|
||||||
|
background-color:#FCF8E3;
|
||||||
|
width:auto;
|
||||||
|
display:inline-block;
|
||||||
|
color:black;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding:2px;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* Default
|
* Default
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue