Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Re: Change color of text balloon when hover 'add' button 18.05.2012 10:58
Hello,
tooltips are using your template styling by default. If you want to override it at LM, you can add these sections to listmanager css:
For joomla1.5
/* Tooltips */
body .tool-tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
text-align:left;
}
body .tool-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../../system/images/selector-arrow.png) no-repeat;
}
body .tool-text {
font-size: 100%;
margin: 0;
}
and for joomla 1.6+
body .tip-wrap{
z-index: 10000;
}
body .tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
}
body .tip-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../images/selector-arrow.png) no-repeat;
}
body .tip-text {
font-size: 100%;
margin: 0;
}
Hope this helps, best regards
Moonsoft Team
www.moonsoft.es
tooltips are using your template styling by default. If you want to override it at LM, you can add these sections to listmanager css:
For joomla1.5
/* Tooltips */
body .tool-tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
text-align:left;
}
body .tool-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../../system/images/selector-arrow.png) no-repeat;
}
body .tool-text {
font-size: 100%;
margin: 0;
}
and for joomla 1.6+
body .tip-wrap{
z-index: 10000;
}
body .tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
}
body .tip-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../images/selector-arrow.png) no-repeat;
}
body .tip-text {
font-size: 100%;
margin: 0;
}
Hope this helps, best regards
Moonsoft Team
www.moonsoft.es