From a14d243fcdd18bb7bd5409d1a8804bf06929824d Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 13 Jul 2012 17:49:13 +0200 Subject: Fixed display of attributes_widget in IE9 Attributes widget is using overflow css rule in tbody element. IE9 doesn't handle it well. To fix the issue, attributes widget was slightly modified and conditional css stylesheet was added just for fixing IE problems. https://fedorahosted.org/freeipa/ticket/2822 --- install/ui/aci.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install/ui/aci.js') diff --git a/install/ui/aci.js b/install/ui/aci.js index 953116c3..b2e5e19e 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -473,13 +473,17 @@ IPA.attributes_widget = function(spec) { that.create = function(container) { that.container = container; + var attr_container = $('
', { + 'class': 'aci-attribute-table-container' + }).appendTo(container); + that.table = $('', { id:id, 'class':'search-table aci-attribute-table scrollable' }). append(''). append(''). - appendTo(container); + appendTo(attr_container); var tr = $('').appendTo($('thead', that.table)); -- cgit