summaryrefslogtreecommitdiffstats
path: root/install/ui/rule.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-08-10 20:03:02 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-09 19:47:51 +0000
commit844ff2075f8c1ce3131a161db9d3fb498b4940e0 (patch)
tree4b7acd0154588c93e483d0c361f1848b8f8c4503 /install/ui/rule.js
parent290bc6a7682b9744e927b772f8f36f67eb6ff5e5 (diff)
downloadfreeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.tar.gz
freeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.tar.xz
freeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.zip
Fixed layout problem in permission adder dialog.
In order to maintain consistent layout between details page and dialog boxes the IPA.details_list_section has been replaced with IPA.details_table_section which is based on table. The IPA.target_section and other subclasses of IPA.details_list_section have been converted to use IPA.details_table_section as well. The unit tests have been updated accordingly. Ticket #1648
Diffstat (limited to 'install/ui/rule.js')
-rw-r--r--install/ui/rule.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/rule.js b/install/ui/rule.js
index d9602f689..b4d10a1fc 100644
--- a/install/ui/rule.js
+++ b/install/ui/rule.js
@@ -45,7 +45,7 @@ IPA.rule_details_section = function(spec) {
var span = $('<span/>', {
name: that.field_name,
title: param_info.doc,
- 'class': 'details-field'
+ 'class': 'field'
}).appendTo(container);
@@ -92,7 +92,7 @@ IPA.rule_details_section = function(spec) {
var table_span = $('<span/>', {
name: table.field_name,
title: param_info ? param_info.doc : table.field_name,
- 'class': 'details-field'
+ 'class': 'field'
}).appendTo(span);
field = that.get_field(table.field_name);