From 4e5cc379d58b48a8c84e12aada3d263e4e1c8bb4 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 22 Feb 2011 13:09:14 -0500 Subject: move expand and collpase all to the right hand side --- install/ui/details.js | 4 +++- install/ui/ipa.css | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/install/ui/details.js b/install/ui/details.js index a2ad08961..895c19aa1 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -367,13 +367,15 @@ IPA.details_facet = function(spec) { name: 'expand_all', href: 'expand_all', text: 'Expand All', + 'class': 'expand-collapse-all', style: 'display: none;' }).appendTo(details); $('', { name: 'collapse_all', href: 'collapse_all', - text: 'Collapse All' + text: 'Collapse All', + 'class': 'expand-collapse-all' }).appendTo(details); details.append('
'); diff --git a/install/ui/ipa.css b/install/ui/ipa.css index a9004c9f3..56e5c2507 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -963,3 +963,8 @@ table.scrollable tbody { width: 23em; height: 4em; } + +.expand-collapse-all { + float: right; + padding-right: 1.5em; +} \ No newline at end of file -- cgit