1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

expandit added to some admin->pref elements.

This commit is contained in:
Cameron
2012-12-10 17:38:52 -08:00
parent 1a3c3985db
commit 6e9ccdb59e
4 changed files with 145 additions and 110 deletions

View File

@@ -15,5 +15,6 @@ tr.highlight-odd { background-color: silver; }
legend { display: none; }
.chzn-choices { width: 350px; }
.e-autocomplete { display: none }
.e-expandit-container { margin-top:10px }
.col-selection { padding:5px; text-align:left; background-color: #FCFDFF; border: 1px outset black; width:200px; margin-right:0px;overflow:visible; position:absolute; z-index:101; right:0px;}

View File

@@ -88,7 +88,7 @@ $(document).ready(function()
if(href === "#" || href == "")
{
idt = $(this).nextAll("div");
idt = $(this).nextAll("div.e-expandit-container");
$(idt).show("slow");
return true; // must be true or radio buttons etc. won't work
}
@@ -113,7 +113,7 @@ $(document).ready(function()
if(href === "#" || href == "")
{
idt = $(this).nextAll("div");
idt = $(this).nextAll("div.e-expandit-container");
$(idt).hide("slow");
return true; // must be true or radio buttons etc. won't work
}