diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-09-26 15:44:34 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-09-26 15:44:34 -0600 |
commit | d1792ab3e03dd151041f2b044ebad6422ce47d38 (patch) | |
tree | e388b7430564d64b82cecd91e53bae068cd5159a /themes/wind/css | |
parent | ef35f0900170c9c375d5c1c87fc79c613ee96c51 (diff) |
Clean up hover effect, move some CSS out of ui.init.js to screen.css. Fix context_menu, it wasn't closing. Fix context_menu in IE7 by putting a bg color on the menu
Diffstat (limited to 'themes/wind/css')
-rw-r--r-- | themes/wind/css/screen.css | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index 2898bf2b..444c370e 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -465,6 +465,7 @@ form .gError, #gContent .gPhoto h2, #gContent .gItem .gMetadata { display: none; + margin-bottom: .6em; } #gContent #gAlbumGrid .gAlbum { @@ -480,8 +481,9 @@ form .gError, } #gContent #gAlbumGrid .gHoverItem { - background-color: #fff; border: 1px solid #000; + position: absolute !important; + z-index: 1000 !important; } #gContent .gHoverItem h2, @@ -489,6 +491,12 @@ form .gError, display: block; } +#gContent #gAlbumGrid #gPlaceHolder { + position: relative; + visibility: hidden; + z-index: 1; +} + /* Individual photo content ~~~~~~~~~~~~~~ */ #gContent #gItem { @@ -589,7 +597,7 @@ form .gError, #gSiteMenu { bottom: 0; - display: none; + display: none; left: 140px; position: absolute; } @@ -601,9 +609,10 @@ form .gError, /* Context Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ .gContextMenu { - position: absolute; + background-color: #fff; bottom: 0; left: 0; + position: absolute; } .gItem .gContextMenu { |