diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-01-25 06:55:24 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-01-25 06:55:24 +0000 |
commit | ffa1fa45f691160aa369e772b71618a547742625 (patch) | |
tree | 0e91417db3f05e91f8d5ecb99b3b4f9982b35bd9 /themes/admin_default/js/ui.init.js | |
parent | a8233ed9795e42bb013a4d860fa063d8710d71eb (diff) |
Admin theme style cleanup. Merged separate selected, available, unavailable into a single set of reusable classes. Applied alternating row bg colors. Removed inline CSS from admin views. Moved user admin css into admin_default theme style sheet.
Diffstat (limited to 'themes/admin_default/js/ui.init.js')
-rw-r--r-- | themes/admin_default/js/ui.init.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/admin_default/js/ui.init.js b/themes/admin_default/js/ui.init.js index 79da8695..24cc0115 100644 --- a/themes/admin_default/js/ui.init.js +++ b/themes/admin_default/js/ui.init.js @@ -26,6 +26,14 @@ $(document).ready(function(){ $(panelLinks[i]).bind("click", {element: panelLinks[i]}, handlePanelEvent); } + // Round corners + $(".gSelected").addClass("ui-corner-all"); + $(".gAvailable").addClass("ui-corner-all"); + $(".gUnavailable").addClass("ui-corner-all"); + + // Add drop shadows + $(".gSelected").dropShadow(); + }); function handlePanelEvent(event) { |