O tooltip de detalhes aparece atrás do calendário, como muda a sobreposição?
Módulo Eventlist Ajax Calendar
Tema: RocketTheme MetaMorph (demo
http://demo.rockettheme.com/sep08_j15/
)
Estilo: Style1
Site:
http://tecnologiaviva.com.br/
Arquivo mod_eventlistcalqajax.php
// include mootools tooltip
JHTML::_('behavior.tooltip');
Arquivo mod_eventlistcalqajax.css
/* Tooltips */
.tool-tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 300px;
}
/* Container div Width set the same as calendar width. Setting both margins to auto centres the calendar*/
.eventcalq {
width: 154px;
margin-left: auto ;
margin-right: auto ;
}
/* Overall calendar table properties */
.eventcalq table.mod_eventlistcalqajax_calendar {
width: 154px;
padding: 0;
margin: 0;
border-left: 1px solid #A2ADBC;
font: normal 12px/20px "Trebuchet MS", Arial, Verdana, Helvetica, sans-serif;
color: #616B76;
text-align: center;
background-color: #fff;
}
/* Blank cell properties */
.eventcalq td.mod_eventlistcalqajax {
font: bold 11px/20px "Trebuchet MS", Arial, Verdana, Helvetica, sans-serif;
border-right: 1px solid #A2ADBC;
border-bottom: 1px solid #A2ADBC;
width: 21px;
height: 20px;
text-align: center;
background-color: #F0F8FF;
}
<script type="text/javascript">
window.addEvent('domready', function(){
var JTooltips = new Tips($$('.hasTip'), {
maxTitleChars: 50, fixed: false
});
});
</script>