aboutsummaryrefslogtreecommitdiffstats
path: root/template-common
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2008-03-02 17:53:23 +0000
committerpatdenice <patdenice@piwigo.org>2008-03-02 17:53:23 +0000
commit78e175b3fb7c8d2f9824b15632595523f9ea236c (patch)
treef4ee8463f6b506e3deb474853bf5c4e28db5963c /template-common
parentfab44f72a89396d624be49311fc0622635d44f8a (diff)
Enhance plugins administtration
git-svn-id: http://piwigo.org/svn/trunk@2242 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template-common')
-rw-r--r--template-common/default-layout.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/template-common/default-layout.css b/template-common/default-layout.css
index fa9928c33..41090e76b 100644
--- a/template-common/default-layout.css
+++ b/template-common/default-layout.css
@@ -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;
+}