aboutsummaryrefslogtreecommitdiffstats
path: root/template-common/default-layout.css
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-08-28 01:26:26 +0000
committerrvelices <rv-github@modusoptimus.com>2008-08-28 01:26:26 +0000
commit3a67845aaf128fe718b27a89635fb33810ba7e41 (patch)
treecc12790366983d2c7496bbbf5eb5de5ac2b3b6a8 /template-common/default-layout.css
parentabb2f22b2e96a89a44ad9d36db3bf612c6f88b9f (diff)
- removed and moved (from common to admin) some CSS rules
- upgraded jQuery and accordion to latest version (and reorganised a bit their location) git-svn-id: http://piwigo.org/svn/trunk@2489 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template-common/default-layout.css')
-rw-r--r--template-common/default-layout.css30
1 files changed, 0 insertions, 30 deletions
diff --git a/template-common/default-layout.css b/template-common/default-layout.css
index fb030f5a1..4aecf3d55 100644
--- a/template-common/default-layout.css
+++ b/template-common/default-layout.css
@@ -40,33 +40,3 @@ BODY#thePopuphelpPage {
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;
-}