mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
* include/styles/menu.css include/styles/cluetip.css include/styles/pandora.css include/functions.php include/functions_events.php include/graphs/functions_gd.php include/functions_networkmap.php include/javascript/jquery.cluetip.js images/outof.png: Visual improvements * include/functions_treeview.php extensions/module_groups.php operation/tree.php operation/events/events.build_table.php operation/events/events_list.php operation/agentes/status_monitor.php : Add to the shared views between normal and meta controls to access remote nodes for certain users * include/functions_visual_map.php include/functions_ui.php: Little bugfixes and improvements git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8237 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
100 lines
1.8 KiB
CSS
100 lines
1.8 KiB
CSS
/* global */
|
|
#cluetip-close img {
|
|
border: 0;
|
|
}
|
|
#cluetip-title {
|
|
overflow: hidden;
|
|
}
|
|
#cluetip-title #cluetip-close {
|
|
float: right;
|
|
position: relative;
|
|
}
|
|
#cluetip-waitimage {
|
|
width: 43px;
|
|
height: 11px;
|
|
position: absolute;
|
|
background-image: url(../../images/wait.gif);
|
|
}
|
|
.cluetip-arrows {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: -11px;
|
|
height: 22px;
|
|
width: 11px;
|
|
background-repeat: no-repeat;
|
|
background-position: 0 0;
|
|
}
|
|
#cluetip-extra {
|
|
display: none;
|
|
}
|
|
/***************************************
|
|
=cluetipClass: 'default'
|
|
-------------------------------------- */
|
|
|
|
.cluetip-default {
|
|
background-color: #FFF;
|
|
text-align: left;
|
|
}
|
|
.cluetip-default #cluetip-outer {
|
|
position: relative;
|
|
margin: 0;
|
|
background-color: #FFF;
|
|
}
|
|
.cluetip-default h3 {
|
|
margin: 0 0 5px;
|
|
padding: 8px 10px 4px;
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
background-color: #B1B1B1;
|
|
color: #fff;
|
|
}
|
|
.cluetip-default h3#cluetip-title {
|
|
display: none;
|
|
height: 0px;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #FFF;
|
|
}
|
|
.cluetip-default #cluetip-title a {
|
|
color: #FFF;
|
|
font-size: 0.95em;
|
|
}
|
|
.cluetip-default #cluetip-inner {
|
|
padding: 10px;
|
|
}
|
|
.cluetip-default div#cluetip-close {
|
|
text-align: right;
|
|
margin: 0 5px 5px;
|
|
color: #900;
|
|
}
|
|
.cluetip-default ul {
|
|
text-align: left;
|
|
}
|
|
/* default arrows */
|
|
|
|
.clue-right-default .cluetip-arrows {
|
|
background-image: url(../../images/darrowleft.png);
|
|
}
|
|
.clue-left-default .cluetip-arrows {
|
|
background-image: url(../../images/darrowright.png);
|
|
left: 100%;
|
|
margin-right: -11px;
|
|
}
|
|
.clue-top-default .cluetip-arrows {
|
|
background-image: url(../../images/darrowdown.png);
|
|
top: 100%;
|
|
left: 50%;
|
|
margin-left: -11px;
|
|
height: 11px;
|
|
width: 22px;
|
|
}
|
|
.clue-bottom-default .cluetip-arrows {
|
|
background-image: url(../../images/darrowup.png);
|
|
top: -11px;
|
|
left: 50%;
|
|
margin-left: -11px;
|
|
height: 11px;
|
|
width: 22px;
|
|
}
|