diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-08-28 01:26:26 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-08-28 01:26:26 +0000 |
commit | 3a67845aaf128fe718b27a89635fb33810ba7e41 (patch) | |
tree | cc12790366983d2c7496bbbf5eb5de5ac2b3b6a8 /admin/template/yoga/default-layout.css | |
parent | abb2f22b2e96a89a44ad9d36db3bf612c6f88b9f (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 '')
-rw-r--r-- | admin/template/yoga/default-layout.css | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/admin/template/yoga/default-layout.css b/admin/template/yoga/default-layout.css index a51cc706d..f7e9edb4a 100644 --- a/admin/template/yoga/default-layout.css +++ b/admin/template/yoga/default-layout.css @@ -178,7 +178,7 @@ background-color: transparent; z-index: 50; } -.over span{ /*CSS for enlarged image*/ +.over SPAN{ /*CSS for enlarged image*/ position: absolute; background-color: #eee; padding: 5px; @@ -189,17 +189,49 @@ color: black; text-decoration: none; } -.over span img{ /*CSS for enlarged image*/ +.over SPAN IMG{ /*CSS for enlarged image*/ border-width: 0; padding: 2px; } -.over:hover span{ /*CSS for enlarged image on hover*/ +.over:hover SPAN{ /*CSS for enlarged image on hover*/ visibility: visible; top: 0; left: 60px; /*position where enlarged image should offset horizontally */ } + +/* 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; +} + BODY { margin: 5px; padding: 0; @@ -461,9 +493,6 @@ BODY#thePopuphelpPage .content UL LI margin-bottom: 0.5em; } -BODY#thePopuphelpPage P#pageBottomActions A { - border: none; -} TR.tagLine { border-bottom: 1px solid #ddd; |