diff options
author | Felix Nagel <info@felixnagel.com> | 2010-10-25 23:05:09 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2010-10-25 23:05:09 +0200 |
commit | d6c439106811bfef5eaa976de39b3a2cffc6db0e (patch) | |
tree | 078e591ac15eabdf4e3582a5d2076d38896b1416 | |
parent | cf157eff95fa249fa0db2af012e6f39292ff7bb1 (diff) | |
download | jquery-ui-d6c439106811bfef5eaa976de39b3a2cffc6db0e.tar.gz jquery-ui-d6c439106811bfef5eaa976de39b3a2cffc6db0e.zip |
fixed: issue with jQuery UI dialog (added z-index)
-rw-r--r-- | themes/base/jquery.ui.selectmenu.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.selectmenu.css b/themes/base/jquery.ui.selectmenu.css index 087e25911..15c0e3237 100644 --- a/themes/base/jquery.ui.selectmenu.css +++ b/themes/base/jquery.ui.selectmenu.css @@ -2,7 +2,7 @@ ----------------------------------*/ .ui-selectmenu { display: block; position:relative; height:2em; text-decoration: none; overflow:hidden;} .ui-selectmenu-icon { position:absolute; right:6px; margin-top:-8px; top: 50%; } -.ui-selectmenu-menu { padding:0; margin:0; list-style:none; position:absolute; top: 0; visibility: hidden; overflow: auto; } +.ui-selectmenu-menu { padding:0; margin:0; list-style:none; position:absolute; top: 0; visibility: hidden; overflow: auto; z-index: 1005;} /* z-index: 1005 to make selectmenu work with dialog */ .ui-selectmenu-open { visibility: visible; } .ui-selectmenu-menu-popup { margin-top: -1px; } .ui-selectmenu-menu-dropdown { } |