diff options
author | Richard D. Worth <rdworth@gmail.com> | 2010-05-26 18:42:24 -0400 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2010-05-26 18:42:24 -0400 |
commit | a90e195489915ed8a6d66005adea7844cbabe3e7 (patch) | |
tree | 81f33c7e09db20977fb405fe473387e2663a3ef5 /themes | |
parent | 202ddd0c58933e80b60373690412d2103b60388b (diff) | |
download | jquery-ui-a90e195489915ed8a6d66005adea7844cbabe3e7.tar.gz jquery-ui-a90e195489915ed8a6d66005adea7844cbabe3e7.zip |
Selectable: moved position absolute and z-index to css. Fixed #4475 - Selectable helper has z-index hard coded
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/jquery.ui.selectable.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.selectable.css b/themes/base/jquery.ui.selectable.css index c5d46ce24..639bcfc5a 100644 --- a/themes/base/jquery.ui.selectable.css +++ b/themes/base/jquery.ui.selectable.css @@ -1,3 +1,3 @@ /* Selectable ----------------------------------*/ -.ui-selectable-helper { border:1px dotted black } +.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } |