From 04cf1f4648c5b51e923cd38b7206b428d37c528e Mon Sep 17 00:00:00 2001 From: joe dao Date: Thu, 19 Jan 2012 16:28:13 -0800 Subject: [PATCH] Adding an explicit z-index css attribute to handle the bug of dropdown appearing behind some other html elements. --- Source/TextboxList.Autocomplete.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TextboxList.Autocomplete.css b/Source/TextboxList.Autocomplete.css index 9a6d865..bdd12b3 100644 --- a/Source/TextboxList.Autocomplete.css +++ b/Source/TextboxList.Autocomplete.css @@ -4,7 +4,7 @@ Purchase to remove copyright */ -.textboxlist-autocomplete { position: absolute; } +.textboxlist-autocomplete { position: absolute; z-index: 1; } .textboxlist-autocomplete-placeholder, .textboxlist-autocomplete-results { opacity: 0.9; filter: alpha(opacity=90); background: #eee; -webkit-box-shadow: 0 3px 3px #ccc; -moz-box-shadow: 0 3px 3px #ccc; box-shadow: 0 3px 3px #ccc; border: 1px solid #999; border-top: none; display: none; } .textboxlist-autocomplete-placeholder { padding: 5px 7px; } .textboxlist-autocomplete-results { margin: 0; padding: 0; }