Enhance plugins administtration

git-svn-id: http://piwigo.org/svn/trunk@2242 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2008-03-02 17:53:23 +00:00
parent fab44f72a8
commit 78e175b3fb
15 changed files with 6800 additions and 173 deletions
+31
View File
@@ -49,3 +49,34 @@ BODY#theAdminPage #content {
display: block; /* display: none; if you don't want legend */
height: 4em; /* legend height (don't set auto to be Gecko friendly)*/
}
/* Tooltips*/
.tooltip {
position: relative;
}
.tooltip span {
display: none;
}
.tooltip:hover {
cursor: pointer;
z-index: 500;
}
.tooltip:hover span {
display: inline;
position: absolute;
top: 30px;
left: -50px;
width: 400px;
font-size: 11px;
text-decoration: none;
text-align: justify;
background-color: #FFFFCC;
color: #444444;
padding: 10px;
border: 1px solid Black;
}