summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-02-22 13:09:14 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-02-22 14:58:42 -0500
commit4e5cc379d58b48a8c84e12aada3d263e4e1c8bb4 (patch)
tree254b663790caefe924225a62d66d2abd203375e2 /install
parent848daee92abac0cdc23682b64cd8315d25610995 (diff)
downloadfreeipa-4e5cc379d58b48a8c84e12aada3d263e4e1c8bb4.tar.gz
freeipa-4e5cc379d58b48a8c84e12aada3d263e4e1c8bb4.tar.xz
freeipa-4e5cc379d58b48a8c84e12aada3d263e4e1c8bb4.zip
move expand and collpase all to the right hand side
Diffstat (limited to 'install')
-rw-r--r--install/ui/details.js4
-rw-r--r--install/ui/ipa.css5
2 files changed, 8 insertions, 1 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index a2ad0896..895c19aa 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);
$('<a/>', {
name: 'collapse_all',
href: 'collapse_all',
- text: 'Collapse All'
+ text: 'Collapse All',
+ 'class': 'expand-collapse-all'
}).appendTo(details);
details.append('<br/>');
diff --git a/install/ui/ipa.css b/install/ui/ipa.css
index a9004c9f..56e5c250 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