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:
@@ -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;}
|
||||
|
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user