mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-28 20:39:18 +02:00
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql: Added a new column to store extended module information. * operation/agentes/status_monitor.php, operation/agentes/estado_monitores.php: Added help tips to display extended module information. * extras/pandoradb_migrate_v3.2_to_v4.0.sql, godmode/agentes/agent_manager.php, include/styles/tip.css, include/functions_ui.php: Added support for help tips with custom images. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4711 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
54 lines
920 B
CSS
54 lines
920 B
CSS
a.tip {
|
|
cursor: help;
|
|
padding: 5px 2px 5px 2px;
|
|
}
|
|
a.help {
|
|
cursor: help;
|
|
background: url(../../images/help2.png) no-repeat;
|
|
padding: 2px 2px 2px 12px;
|
|
left: 5px;
|
|
text-transform: capitalize;
|
|
}
|
|
a.info {
|
|
padding: 25px 0px 0px 0px;
|
|
}
|
|
a.tip, a.help , a.info {
|
|
position: relative;
|
|
text-decoration: none;
|
|
}
|
|
a.tip:hover {
|
|
text-decoration: none;
|
|
background-color: #efefef;
|
|
}
|
|
a.info:hover, a.help:hover {
|
|
text-decoration: none;
|
|
}
|
|
a.tip span, a.info span, a.help span {
|
|
display: none;
|
|
}
|
|
a.tip:hover span, a.info:hover span, a.help:hover span {
|
|
display: block;
|
|
text-decoration: none;
|
|
position: absolute;
|
|
z-index: 99;
|
|
top: 20px;
|
|
left: 6px;
|
|
min-width: 150px;
|
|
border: 1px solid #708090;
|
|
background-color: #d4ddc6;
|
|
color: #000;
|
|
padding: 2px;
|
|
}
|
|
|
|
a.info:hover span {
|
|
top: 45px;
|
|
left: 20px;
|
|
width: 120px;
|
|
background-color: #ffffff;
|
|
border: 1px solid #aaaaaa;
|
|
}
|
|
a.help:hover span {
|
|
top: 15px;
|
|
width: 80px;
|
|
}
|