diff options
Diffstat (limited to '')
-rw-r--r-- | template-common/default-layout.css | 31 |
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; +} |